/*
 * MEISTER Almería v2.1.6 — Hero typography parity with MEISTER Córdoba.
 * Loaded after every legacy/QA stylesheet so the production selector wins.
 */

/* Never render both accessible title variants at the same breakpoint. */
.home .hero--lead h1 .hero-title-desktop {
  display: inline !important;
}

.home .hero--lead h1 .hero-title-mobile {
  display: none !important;
}

/* Desktop reference: approximately 99px at a 1363px viewport, like Córdoba. */
@media (min-width: 1181px) {
  .home .hero--lead .hero-content {
    max-width: 650px !important;
  }

  .home .hero--lead .hero-content h1 {
    width: 100% !important;
    max-width: 645px !important;
    margin: 14px 0 18px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(64px, 7.25vw, 110px) !important;
    font-weight: 400 !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    text-transform: none !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

/* Tablet and mobile keep their dedicated compact title without duplication. */
@media (max-width: 1180px) {
  .home .hero--lead h1 .hero-title-desktop {
    display: none !important;
  }

  .home .hero--lead h1 .hero-title-mobile {
    display: block !important;
  }
}

