/* Section Heading Block */
.section-heading {
    box-sizing: border-box;
    /* Offset for any sticky header (site nav + section nav) so anchor jumps
       leave breathing room above the heading. Override via the CSS variable. */
    scroll-margin-top: var(--section-heading-offset, 140px);
}

/* Family from Elementor Poppins token; size custom per design */
.section-heading .section-heading__text {
    font-family: var(--e-global-typography-4e97d65-font-family, "Poppins"), sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.5;
    text-transform: uppercase;
    color: inherit;
    margin: 0;
}

@media (max-width: 768px) {
    .section-heading .section-heading__text { font-size: 32px; }
}

@media (max-width: 480px) {
    .section-heading .section-heading__text { font-size: 24px; }
}
