/* Core Structural Layout to match the target design image */
.page-hero.activities-layout {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: left; /* Aligns content cleanly to the left */
}

/* Deep Navy Bold Heading */
.page-hero.activities-layout .hero-title {
    font-size: 2.5rem;
    color: #0f2547; 
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Balanced Slate Gray Description Text */
.page-hero.activities-layout .hero-description {
    font-size: 1.1rem;
    color: #616e7d; 
    line-height: 1.6;
    margin: 0;
    max-width: 680px; /* Constrains paragraph width for a high-end look */
    font-weight: 400;
}

/* Optional Eyebrow styling if you decide to use it in the future */
.page-hero.activities-layout .page-hero-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f3cd32;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Responsive adjustments for Tablets & Smartphones */
@media (max-width: 768px) {
    .page-hero.activities-layout {
        padding: 30px 15px;
    }
    .page-hero.activities-layout .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .page-hero.activities-layout .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}
