﻿#testimonials {
    background: var(--bg2);
    padding: 100px 80px;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testi-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testi-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(77,184,255,.2);
    animation: spin 30s linear infinite;
}

.testi-ring2 {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px dashed rgba(77,184,255,.1);
    animation: spin 50s linear infinite reverse;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.testi-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(.5) brightness(.65);
    border: 1px solid var(--border);
    box-shadow: 0 0 80px rgba(77,184,255,.1);
}

.testi-quote {
    font-family: var(--font-mono);
    font-size: 6rem;
    color: var(--blue);
    line-height: 0;
    opacity: .3;
    display: block;
    margin-bottom: 20px;
}

.testi-text {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 300;
    font-style: italic;
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 28px;
}

.testi-name {
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.testi-role {
    font-size: .72rem;
    color: var(--silver-dim);
    letter-spacing: 1px;
    margin-bottom: 36px;
}

.testi-avatars {
    display: flex;
    gap: 12px;
}

.testi-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(.4) brightness(.7);
    opacity: .5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s;
}

    .testi-av.active {
        opacity: 1;
        border-color: var(--blue);
        filter: saturate(.8) brightness(.9);
        box-shadow: 0 0 14px var(--blue-glow);
    }
