/* =========================================================
   NOVA ANALYTICS — SECTION LAYOUT

   Shared structural rules for standard page sections.

   Section-specific files should only override these rules
   when the section genuinely requires different behaviour.
   ========================================================= */


/* =========================================================
   STANDARD SECTION
   ========================================================= */

.na-section {
    width: 100%;
    max-width: var(--na-content-width);

    margin: var(--na-section-space) auto;
    padding: 0 var(--na-content-padding);

    box-sizing: border-box;
}


/* =========================================================
   SECTION WIDTH VARIANTS
   ========================================================= */

.na-section--narrow {
    max-width: var(--na-content-width-narrow);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.na-section > h2,
.na-section__title {
    margin-top: 0;
    font-size: 2rem;
}


/* =========================================================
   SECTION INNER
   ========================================================= */

.na-section__inner {
    width: 100%;
    min-width: 0;
}