/* ── About Us page ── */

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

.au-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.au-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 110px;
}

.au-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 110px 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.au-photo-wrap {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: none;
}

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

.au-photo-placeholder {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-initials {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}

.au-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.au-namerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.1rem;
}

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

.au-li {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.au-li img {
    height: 18px;
    width: auto;
    display: block;
}

.au-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.au-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .au-grid {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .au-card {
        padding: 1.5rem;
    }

    .au-photo-wrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 140px;
        height: 140px;
        margin: 0 auto 1rem;
    }

    .au-name {
        font-size: 1.2rem;
    }
}
