/* ── Testimonials test page ── */

.ttest-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 2.5rem;
    text-align: center;
}

/* ── Grid ── */
.ttest-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Card ── */
.ttest-card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 1.5rem;
    text-align: left;
}

/* ── Photo ── */
.ttest-photo-ring {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.ttest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ── Info ── */
.ttest-info {
    flex: 1;
}

.ttest-stars {
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #f59e0b;
    margin-bottom: 0.45rem;
}

.ttest-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.ttest-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.ttest-linkedin {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.ttest-linkedin img {
    height: 18px;
    width: auto;
    display: block;
}

.ttest-role {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.85rem;
}

.ttest-role a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #2563eb;
}

.ttest-role a:hover {
    color: #1d4ed8;
    text-decoration-color: transparent;
}

.ttest-quote {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    font-style: normal;
    border: none;
    padding: 0;
    position: relative;
}


/* ── Responsive ── */
@media (max-width: 640px) {
    .ttest-card {
        flex-direction: column;
        gap: 1.25rem;
    }

    .ttest-photo-ring {
        width: 120px;
        height: 120px;
        flex: none;
    }

    .ttest-name {
        font-size: 1.25rem;
    }
}
