/* Section Styling */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Listing pages (blog index, category pages) sit directly below the
   breadcrumb with no hero above them, so they need less top padding. */
.archive-section {
    padding-top: 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
}
