.award-card 
{ position: relative; 
    background: #fff; 
    transition: transform 0.3s ease-in-out; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center; 
    text-align: center; 
    padding: 20px; 
    height: 350px; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    flex: 1; 
    margin-top: 15px; 
    overflow: hidden; 
} 

.award-card::before { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 80px; /* Lebar sudut */ 
    height: 80px; /* Tinggi sudut */ 
    background: rgba(167, 44, 255, 0.8); /* Warna dengan sedikit ketelusan */ 
    clip-path: polygon(0 0, 100% 0, 0 100%); /* Bentuk ¾ sudut */ 
    transition: all 0.3s ease-in-out; 
    opacity: 0; 
} 

.award-card:hover { 
    transform: scale(1.05); 
} 

.award-card:hover::before { 
    opacity: 1; 
} 

/* Tetapkan saiz gambar dalam container */ 
.img-container { 
    width: 150px; 
    height: 150px; 
    max-width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
} 

.award-img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
} /* Teks dalam kad */ 

.name-award { 
    font-size: 1.1rem; 
    color: deeppink; 
    margin-top: 10px; 
} 

.info-award { 
    font-size: 1.1rem; 
    color: #333; 
    text-align: center; 
    line-height: 1.5; 
    flex-grow: 1; 
    margin-top: 20px; 
}