/* =============================================================
   Exvomo — Global / Shared Styles
   Block-specific styles live in each block's own style.css.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Remove default WordPress block margins that break section layouts */
.hero .wp-block-group,
.cards .wp-block-group,
.recommendations .wp-block-group,
.press .wp-block-group,
.socials .wp-block-group {
    margin-block-start: 0;
    margin-block-end: 0;
}

/* =============================================================
   SHARED UTILITIES
   ============================================================= */

.section-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem !important;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.65;
    max-width: 560px;
    margin-inline: auto;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .section-inner { padding-inline: 1.25rem; }
}