/* ======================================
   TESTIMONI PAGE
====================================== */

.testimoni-page{
    padding:40px 0;
}

.testimoni-page-header{
    margin-bottom:28px;
}

.testimoni-page-title{
    font-size:30px;
    font-weight:700;
    margin:0 0 8px;
    color:var(--primary);
}

.testimoni-page-title::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:var(--accent);
    margin-top:8px;
    border-radius:2px;
}

.testimoni-page-subtitle{
    margin:0;
    font-size:15px;
    color:var(--text-light);
    line-height:1.6;
}

.testimoni-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px;
}

.testimoni-card{
    background:#f3f4f6;
    border-top:4px solid var(--primary);
    border-radius:18px;
    padding:22px 20px;
    min-height:210px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:box-shadow .25s ease;
}

.testimoni-card:hover{
    transform:none;
    box-shadow:
        0 14px 30px rgba(0,0,0,.08),
        0 4px 10px rgba(0,0,0,.04);
}

.testimoni-content{
    margin-bottom:22px;
}

.testimoni-content p{
    margin:0;
    font-size:18px;
    line-height:1.5;
    color:#1f2937;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.testimoni-footer{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
}

.testimoni-card-top{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.testimoni-avatar{
    width:96px;
    height:96px;
    border-radius:50%;
    overflow:hidden;
    flex:0 0 96px;
    background:#dbeafe;
}

.testimoni-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.testimoni-person{
    min-width:0;
}

.testimoni-name{
    margin:0 0 4px;
    font-size:18px;
    font-weight:700;
    color:#111827;
    line-height:1.3;
}

.testimoni-year{
    margin:0;
    font-size:14px;
    font-weight:500;
    color:var(--primary);
}

.testimoni-quote-icon{
    flex:0 0 auto;
    font-size:28px;
    line-height:1;
    color:#6b7280;
    opacity:.8;
}

.testimoni-empty{
    padding:24px;
    border:1px dashed #d1d5db;
    border-radius:14px;
    text-align:center;
    color:#6b7280;
    background:#fff;
}

@media (max-width:992px){
    .testimoni-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
}

@media (max-width:768px){
    .testimoni-page{
        padding:30px 0;
    }

    .testimoni-page-title{
        font-size:24px;
    }

    .testimoni-page-subtitle{
        font-size:14px;
    }

    .testimoni-card{
        padding:18px 16px;
        min-height:auto;
        border-radius:16px;
    }

    .testimoni-content{
        margin-bottom:18px;
    }

    .testimoni-content p{
        font-size:16px;
        line-height:1.5;
    }

    .testimoni-avatar{
        width:72px;
        height:72px;
        flex:0 0 72px;
    }

    .testimoni-name{
        font-size:16px;
    }

    .testimoni-year{
        font-size:13px;
    }

    .testimoni-quote-icon{
        font-size:24px;
    }
}