.about-page .page-hero-copy {
    background:
        radial-gradient(circle at top right, rgba(237, 234, 25, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 242, 0.98) 100%);
}

.history-card {
    border-left: 5px solid var(--scout-green);
}

.history-card .section-header {
    margin-bottom: 24px;
}

.insight-card h3 {
    margin: 16px 0 18px;
    font-size: 1.45rem;
}

.insight-card-secondary {
    background:
        radial-gradient(circle at top right, rgba(237, 234, 25, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 249, 246, 0.98) 100%);
}

.highlight-text {
    font-size: 1.18rem;
    color: var(--scout-green-deep);
    line-height: 1.8;
    font-weight: 600;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.director-card {
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    border-top: 4px solid var(--scout-blue);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(17, 39, 24, 0.14);
    border-top-color: var(--scout-yellow);
}

.img-container {
    width: 152px;
    height: 152px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(244, 247, 241, 0.95);
    box-shadow: 0 16px 28px rgba(17, 39, 24, 0.12);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info h3 {
    margin-bottom: 8px;
    color: var(--scout-green-deep);
    font-size: 1.28rem;
}

.director-info .role {
    color: var(--text-muted);
    font-size: 0.98rem;
}

@media (max-width: 1160px) {
    .directors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.06rem;
    }
}
