/* ================================================================ */
/* Testimoni Alumni — styles khusus halaman testimoni_alumni.html   */
/* ================================================================ */

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimoni-section {
    padding: 32px 0 80px;
    background: #fff;
    flex: 1;
}

.testimoni-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimoni-card {
    border: 1.5px solid #e0e6f0;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
}

.testimoni-foto-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 110px;
}

.testimoni-foto {
    width: 110px;
    height: 140px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.82rem;
    font-weight: 600;
    background: #f8f8f8;
    overflow: hidden;
}

.testimoni-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimoni-nama {
    font-size: 0.85rem;
    font-weight: 700;
    color: #030066;
    text-align: center;
    overflow-wrap: break-word;
    width: 100%;
}

.testimoni-teks {
    color: #030066;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    padding-top: 4px;
    text-align: justify;
}

@media (max-width: 520px) {
    .testimoni-card {
        flex-direction: column;
        align-items: center;
    }
    .testimoni-teks { text-align: justify; }
}