.photo-916 {
  width: 100%;
  aspect-ratio: 9 / 16;     /* atau 4/5 */
  max-height: 500px;        /* kecilin tinggi */
  overflow: hidden;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.photo-916 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alumni-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.alumni-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.alumni-content {
    color: #fff;
}

.alumni-content h3 {
    font-weight: 600;
}

.alumni-card:hover {
    transform: scale(1.01);
    transition: 0.3s ease;
}

