/* ==========================================================================
   Editorial Board Manager — Sectioned Cards (default)
   Vertical category sections, each with a divider header and a 2-column card
   grid below. Mockup: design-mockups/04-frontend-sectioned.html
   ========================================================================== */

.ebm-sectioned {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ebm-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.ebm-section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ebm-text);
    margin: 0;
    line-height: 1.2;
}

.ebm-section-divider {
    flex: 1;
    height: 1px;
    background: var(--ebm-border);
}

.ebm-section-count {
    font-size: 11px;
    color: var(--ebm-text-light);
    white-space: nowrap;
}

.ebm-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 720px) {
    .ebm-section-grid {
        grid-template-columns: 1fr;
    }
}
