.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
}

.section-header--surface {
    padding: var(--space-4) var(--space-5);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.section-header--minimal {
    padding: 0;
    background: transparent;
    border-bottom: none;
}

.section-header--compact {
    padding: var(--space-3) var(--space-4);
}

.section-header__main {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    min-width: 0;
}

.section-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.section-header__icon i {
    font-size: var(--font-size-sm);
}

.section-header__content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0;
}

.section-header__eyebrow {
    color: var(--text-subtle);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.section-header__title {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
}

.section-header__subtitle {
    margin: 0;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: 1.55;
}

.section-header__meta {
    display: inline-flex;
    align-items: center;
    align-self: center;
    min-height: 2rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    white-space: nowrap;
}

.section-header__meta:empty {
    display: none;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header__meta {
        align-self: flex-start;
    }
}
