/**
 * @file
 * Page Not Translated — full-bleed photo hero between header and footer.
 *
 * Design reference:
 *   /design-review/no_translated_page/page_not_translated.html
 *
 * Visual language: navy background, photo backdrop with gradient scrim,
 * white text card on the left, two action buttons. The text column is
 * constrained to the site container (--container-xl, 20px gutters) so the
 * title's left edge aligns with the header logo and footer columns at every
 * width — mirroring the theme's .al-content-hero() convention.
 *
 * CSS custom properties and .al-btn come from global-styling (general.css).
 * Imports only _variables for the @bp-* responsive breakpoints.
 */
/**
 * @file
 * Shared LESS variables — imported by general.less and component files.
 *
 * Breakpoint variables used in @media queries across the theme.
 */
/* =========================================================================
   Not Translated — full-bleed hero
   ========================================================================= */
.nt-wrap {
  position: relative;
  display: flex;
  align-items: center;
  /* Floor on short screens, fluid in the middle, capped on tall/large ones. */
  min-height: clamp(460px, 72vh, 760px);
  padding-block: clamp(48px, 8vh, 96px);
  overflow: hidden;
  background: var(--al-navy);
  /* base colour painted before the photo loads */
}
/* Background photo — covers the entire hero area */
.nt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/content-not-translated.jpg");
  background-size: cover;
  background-position: 72% center;
}
/* Navy scrim for text legibility — strongest on the left, with a soft bottom
   fade so the hero settles into the navy footer below it. */
.nt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 32, 52, 0) 58%, rgba(0, 32, 52, 0.55) 100%), linear-gradient(90deg, rgba(0, 32, 52, 0.94) 0%, rgba(0, 32, 52, 0.82) 42%, rgba(0, 32, 52, 0.34) 72%, rgba(0, 32, 52, 0.12) 100%);
}
/* Fallback when background image fails to load */
.nt-bg.is-missing {
  background-color: var(--al-navy);
}
.nt-bg.is-missing::after {
  background: none;
}
/* Content column — matches the site container so the card's left edge lines
   up with the header logo and footer columns at all resolutions. */
.nt-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-inline: 20px;
}
/* Text card — left-aligned within the content column */
.nt-card {
  max-width: 635px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Title */
.nt-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
/* Lead paragraph */
.nt-lead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 36px;
  max-width: 46ch;
  text-wrap: pretty;
}
/* Action buttons row */
.nt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Primary button (homepage) — oversized variant of the al-btn system */
.nt-actions .al-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-size: 16px;
}
.nt-actions .al-btn--primary svg {
  width: 18px;
  height: 18px;
}
/* Back button — dark-theme ghost variant (mirrors al-content-hero __ghost) */
.nt-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  padding: 15px 28px;
  transition: border-color 0.16s var(--ease-out), background 0.16s var(--ease-out), color 0.16s var(--ease-out);
}
.nt-btn-back:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}
.nt-btn-back svg {
  width: 18px;
  height: 18px;
}
/* =========================================================================
   Responsive
   ========================================================================= */
/* Tablet — nudge the focal face right so it clears the text column */
@media (max-width: 860px) {
  /* 860px */
  .nt-bg {
    background-position: 78% center;
  }
}
/* Mobile — vertical scrim, shorter hero, full-width stacked buttons */
@media (max-width: 640px) {
  /* 640px */
  .nt-wrap {
    min-height: clamp(420px, 70vh, 580px);
  }
  .nt-bg {
    background-position: 66% center;
  }
  .nt-bg::after {
    background: linear-gradient(180deg, rgba(0, 32, 52, 0.9) 0%, rgba(0, 32, 52, 0.78) 52%, rgba(0, 32, 52, 0.66) 100%);
  }
  .nt-actions {
    flex-wrap: wrap;
  }
  .nt-actions .al-btn--primary,
  .nt-btn-back {
    min-width: 130px;
  }
}
