/* ==========================================================
   LAYOUT UTILITIES
   ========================================================== */
.sl-container {
    max-width: var(--sl-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sl-section {
    padding: var(--sl-section-gap) 0;
}

.sl-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

.sl-section-title {
    font-family: var(--sl-font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--sl-charcoal);
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.sl-section-subtitle {
    font-size: 14px;
    color: var(--sl-text-muted);
    line-height: 1.75;
    margin-top: 10px;
    max-width: 56ch;
}

.sl-view-all {
    font-size: 11px;
    font-weight: 700;
    color: var(--sl-sage);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.sl-view-all:hover { color: var(--sl-sage-dark); }

/* ==========================================================
   PHASE 4 CONTAINER REFINEMENT
   ========================================================== */
@media (max-width: 767px) {
    .sl-container {
        padding: 0 16px;
    }
}
