/* ═══════════════════════════════════════════════════════════
   About / Over Ons Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero Banner ────────────────────────────────────────── */
.about-hero {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-footer);
}

.about-hero__overlay {
    display: flex;
    align-items: flex-end;
    min-height: 340px;
    padding: 2.5rem 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.about-hero__content {
    max-width: 700px;
}

.about-hero__content h1 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-hero__tagline {
    color: var(--color-gold);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* ─── Page Layout ────────────────────────────────────────── */
.about-page {
    padding: 2rem 0 4rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
}

@media (min-width: 960px) {
    .about-layout {
        grid-template-columns: 1fr 360px;
        gap: 4rem;
    }
}

/* ─── Content Column ─────────────────────────────────────── */
.about-content {
    min-width: 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
}

.about-content p:first-child {
    font-size: 1.15rem;
    color: var(--color-text-dark);
}

.about-content strong {
    color: var(--color-text-dark);
}

.about-content a {
    border-bottom: 1px solid var(--color-gold);
}

.about-content a:hover {
    border-bottom-color: transparent;
}

.about-content h2,
.about-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

.about-content ul,
.about-content ol {
    margin: 1.2em 0;
    padding-left: 0;
    list-style: none;
}

.about-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.about-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* ─── Profile Card ───────────────────────────────────────── */
.about-sidebar {
    min-width: 0;
}

.profile-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
}

.profile-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.profile-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card__body {
    padding: 1.5rem;
}

.profile-card__name {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 0.1rem;
}

.profile-card__role {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.profile-card__aka {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0.15rem 0 1.25rem;
}

.profile-card__details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.profile-card__details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.profile-card__details li::before {
    display: none; /* Override about-content li::before */
}

.profile-card__details svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.profile-card__details a {
    color: var(--color-text);
    border-bottom: none;
}

.profile-card__details a:hover {
    color: var(--color-gold);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ─── Social Icons (profielkaart) ───────────────────────── */
.profile-card__socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.profile-card__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    border-bottom: none;
    transition: background 0.2s, color 0.2s;
}

.profile-card__social-link:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ─── Highlights ─────────────────────────────────────────── */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--color-bg-dark);
    border-radius: 8px;
}

.highlight-item__number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
}

.highlight-item__label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 768px) {
    .about-hero {
        min-height: 420px;
    }

    .about-hero__overlay {
        min-height: 420px;
    }

    .about-hero__content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .about-sidebar {
        order: -1;
    }

    .profile-card {
        display: grid;
        grid-template-columns: 140px 1fr;
    }

    .profile-card__image {
        aspect-ratio: auto;
        min-height: 100%;
    }
}

@media (max-width: 480px) {
    .profile-card {
        grid-template-columns: 1fr;
    }

    .profile-card__image {
        aspect-ratio: 16/9;
    }
}
