.section-hero {
    background-color: var(--color-background-light);
    padding-top: 35px;
    padding-bottom: 35px;
}

.section-hero__content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.section-hero__label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.section-hero__title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
    font-family: var(--font-family-heading);
    line-height: 1.1;
}

.section-hero__meta {
    margin-top: var(--spacing-sm);
    font-size: 1.125rem;
    color: #6f6d6d;
}

@media (max-width: 1024px) {
    .section-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-hero__title {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .section-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-hero__title {
        font-size: 2.2rem;
    }

    .section-hero__meta {
        font-size: 1rem;
    }
}

