/* about.css */

/* ── Content rows ── */
.about-section {
    padding: 72px 24px 88px;
    background: #f5f8fb;
}

.about-feed {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(44,62,80,0.08);
}

.about-row-flip {
    direction: rtl;
}

.about-row-flip > * {
    direction: ltr;
}

/* Image */
.about-row-img {
    overflow: hidden;
}

.about-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-row:hover .about-row-img img {
    transform: scale(1.03);
}

/* Body */
.about-row-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-eyebrow {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 12px;
}

.about-row-body h2 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    color: var(--darkblue);
    font-family: Arial, sans-serif;
    margin: 0 0 12px;
    line-height: 1.2;
}

.about-accent-bar {
    width: 36px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-row-body p {
    font-size: 14px;
    line-height: 1.85;
    color: #5a6a7a;
    margin: 0;
}

/* ── Advisory board ── */
.about-board-section {
    padding: 0 24px 88px;
    background: #f5f8fb;
}

.about-board-card {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: 14px;
    padding: 48px 52px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.08);
    text-align: center;
}

.about-board-card .about-eyebrow {
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.about-board-card h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 900;
    color: var(--darkblue);
    font-family: Arial, sans-serif;
    margin: 0 0 12px;
}

.about-board-accent {
    width: 36px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto 32px;
}

.about-board-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-board-list li {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
    font-size: 14px;
    color: var(--darkblue);
    font-weight: 600;
}

.about-board-list li:last-child {
    border-bottom: none;
}

.about-board-list .board-role {
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a9ab0;
}

.about-join-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--darkblue);
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease;
}

.about-join-btn:hover {
    background: #e6c200;
}

/* ── Mobile ── */
@media (max-width: 660px) {
    .about-row,
    .about-row-flip {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-row-img {
        height: 220px;
    }

    .about-row-body {
        padding: 28px 24px 32px;
    }

    .about-board-card {
        padding: 32px 24px 36px;
    }
}
