/* SEO recovery pages: shared editorial and model layout. */
.seo-hero {
  position: relative;
  overflow: hidden;
  background: #092238;
  color: #fff;
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 24, 39, .98) 0%, rgba(5, 24, 39, .92) 47%, rgba(5, 24, 39, .38) 72%, rgba(5, 24, 39, .12) 100%);
  z-index: 1;
  pointer-events: none;
}

.seo-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: stretch;
  min-height: 430px;
}

.seo-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding: 64px 54px 64px 0;
}

.seo-hero__media {
  min-width: 0;
  min-height: 430px;
}

.seo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-hero .breadcrumb,
.seo-hero .breadcrumb a { color: rgba(255,255,255,.76); }
.seo-hero h1 { max-width: 760px; margin: 16px 0; font-size: clamp(2.25rem, 5vw, 4.4rem); line-height: 1.02; letter-spacing: 0; }
.seo-hero__lead { max-width: 650px; margin: 0; color: rgba(255,255,255,.84); font-size: 1.08rem; line-height: 1.65; }
.seo-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.seo-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #dce3e8;
  border-bottom: 1px solid #dce3e8;
}

.seo-facts > div { min-width: 0; padding: 22px 24px; border-right: 1px solid #dce3e8; }
.seo-facts > div:last-child { border-right: 0; }
.seo-facts dt { margin-bottom: 6px; color: #536575; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.seo-facts dd { margin: 0; color: #10283b; font-weight: 700; }

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.seo-prose { max-width: 780px; }
.seo-prose h2 { margin: 44px 0 14px; color: #10283b; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.seo-prose h2:first-child { margin-top: 0; }
.seo-prose p, .seo-prose li { color: #344c5e; line-height: 1.75; }
.seo-prose ul, .seo-prose ol { padding-left: 1.25rem; }
.seo-prose li + li { margin-top: 8px; }

.seo-aside {
  position: sticky;
  top: 104px;
  border-left: 3px solid #c72931;
  padding: 4px 0 4px 24px;
}
.seo-aside h2, .seo-aside h3 { margin-top: 0; color: #10283b; font-size: 1.28rem; }
.seo-aside p { color: #536575; line-height: 1.65; }
.seo-aside .btn { width: 100%; margin-top: 10px; }

.seo-link-list { display: grid; gap: 0; margin-top: 18px; border-top: 1px solid #dce3e8; }
.seo-link-list a { padding: 13px 0; border-bottom: 1px solid #dce3e8; color: #123d5a; font-weight: 700; text-decoration: none; }
.seo-link-list a:hover { color: #c72931; }

.seo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.seo-gallery figure { margin: 0; min-width: 0; }
.seo-gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 4px; }
.seo-gallery figcaption { padding-top: 8px; color: #607281; font-size: .86rem; line-height: 1.45; }

.seo-model-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dce3e8;
  border: 1px solid #dce3e8;
}
.seo-model-link { display: flex; min-width: 0; flex-direction: column; gap: 8px; padding: 24px; background: #fff; color: #10283b; text-decoration: none; }
.seo-model-link span { color: #607281; line-height: 1.55; }
.seo-model-link strong { font-size: 1.12rem; }
.seo-model-link:hover strong { color: #c72931; }

.seo-faq { border-top: 1px solid #dce3e8; }
.seo-faq details { border-bottom: 1px solid #dce3e8; padding: 18px 0; }
.seo-faq summary { cursor: pointer; color: #10283b; font-weight: 700; }
.seo-faq p { margin: 12px 0 0; color: #526777; line-height: 1.65; }

@media (max-width: 900px) {
  .seo-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .seo-hero__content { padding: 44px 0 34px; }
  .seo-hero__media { min-height: 260px; }
  .seo-hero::before { background: linear-gradient(180deg, rgba(5,24,39,.96) 0%, rgba(5,24,39,.86) 48%, rgba(5,24,39,.16) 76%, rgba(5,24,39,.08) 100%); }
  .seo-content-grid { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
  .seo-model-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .seo-hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .seo-hero__actions .btn { width: 100%; }
  .seo-hero__media { min-height: 220px; }
  .seo-facts, .seo-model-index, .seo-gallery { grid-template-columns: 1fr; }
  .seo-facts > div { border-right: 0; border-bottom: 1px solid #dce3e8; }
  .seo-facts > div:last-child { border-bottom: 0; }
}
