/* ==========================================================================
   Home — align the visual system with nordicup.eu
   Added 2026-07-28.

   Values below are measured off the live nordicup.eu home page at 1440px,
   not guessed:

       H1        56px / 600 / lh 1.06 / ls -0.01em
       H2        40px / 600 / lh 1.18 / ls -0.005em
       H3        600 / ls -0.005em
       body      15px / lh 1.65 / 400
       ink       #0F0F11      lead text  #2A2E38     muted  #7E88A0
       blue      #0416FF
       button    radius 4px, min-height 48px, padding 14px 30px, 15px/500
       card      #fff, 1px #D6E1F5, radius 10px, no shadow
       soft band #F4F6FA

   Everything is scoped to `#brx-content`, which is the Bricks content wrapper.
   That does two things: it keeps the shared header and footer untouched (so
   navigating away from the home page is not a visual jump), and the id gives
   these rules specificity 1,0,x — enough to beat Bricks' own per-element
   `.brxe-*` rules without a single !important.
   ========================================================================== */

/* --- Typography ---------------------------------------------------------- */

#brx-content {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

#brx-content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: #0F0F11;
}

#brx-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.005em;
  color: #0F0F11;
}

/* Weight and tracking only — card titles keep the sizes set per section */
#brx-content h3 {
  font-weight: 600;
  letter-spacing: -.005em;
}

/* --- Buttons ------------------------------------------------------------- */

#brx-content .bricks-button {
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  min-height: 48px;
  padding: 14px 30px;
}

/* --- Cards --------------------------------------------------------------- */
/* One card treatment across the page: article cards, testimonial cards and
   the category tiles all pick up nordicup's 10px radius and cool border. */

#brx-content a.article-wrapper,
#brx-content div.review-block,
#brx-content .product-category {
  background: #fff;
  border: 1px solid #D6E1F5;
  border-radius: 10px;
  box-shadow: none;
}

/* --- Soft bands ---------------------------------------------------------- */
/* Bricks paints these two sections #F8FBFF from its own per-element CSS; the
   .brxe-* classes are the section ids of "About and news" and "Articles". */

#brx-content .brxe-xqlyel,
#brx-content .brxe-nxieph {
  background-color: #F4F6FA;
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 991px) {
  #brx-content h1 { font-size: 44px; }
  #brx-content h2 { font-size: 32px; }
}

@media (max-width: 478px) {
  #brx-content h1 { font-size: 36px; line-height: 1.12; }
  #brx-content h2 { font-size: 28px; }
}
