/* Shared fixes introduced from the 2026-08-11 pre-launch audit. */

/* Shared drawer presentation is kept external so authority/reference pages can
   run under a strict CSP without unsafe-inline while preserving the same UI. */
.drawer-hero-grid--two {
  grid-template-columns: 1fr 1fr;
}

.drawer-hero-btn__title {
  font-size: 13px;
  font-weight: 700;
}

.drawer-info-item__home-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.benefit-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  background: var(--paper, #fff);
  border: 1px solid var(--line-soft, #e5e9ef);
  border-radius: 12px;
  color: var(--text, #243449);
  font-size: 14px;
  line-height: 1.55;
}

.benefit-strip__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy, #0b2341);
  font-size: 14px;
}

.benefit-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(200, 168, 77, .14);
  color: var(--gold, #c8a84d);
  font-weight: 800;
  line-height: 1;
}

.regulatory-update {
  padding: 56px 0;
  background: var(--paper-2, #f7f8fa);
  border-top: 1px solid var(--line-soft, #e5e9ef);
  border-bottom: 1px solid var(--line-soft, #e5e9ef);
}

.regulatory-update__head {
  max-width: 760px;
  margin-bottom: 26px;
}

.regulatory-update__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gold, #c8a84d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.regulatory-update h2 {
  margin: 0 0 10px;
  color: var(--navy, #0b2341);
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -.025em;
}

.regulatory-update__head > p,
.regulatory-update__note {
  color: var(--muted, #647083);
  font-size: 14.5px;
  line-height: 1.7;
}

.regulatory-update__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.regulatory-update__card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line-soft, #e5e9ef);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 35, 65, .045);
}

.regulatory-update__card h3 {
  margin: 0 0 9px;
  color: var(--navy, #0b2341);
  font-size: 16px;
  line-height: 1.3;
}

.regulatory-update__card p {
  margin: 0;
  color: var(--text, #243449);
  font-size: 14px;
  line-height: 1.68;
}

.regulatory-update__note {
  margin: 20px 0 0;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--gold, #c8a84d);
  border-radius: 0 9px 9px 0;
}

.document-status-note {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--paper-2, #f7f8fa);
  border: 1px solid var(--line-soft, #e5e9ef);
  border-left: 4px solid var(--gold, #c8a84d);
  border-radius: 12px;
}

.document-status-note h2,
.document-status-note h3 {
  margin: 0 0 10px;
  color: var(--navy, #0b2341);
}

.document-status-note p {
  margin: 0 0 10px;
  color: var(--text, #243449);
  font-size: 14px;
  line-height: 1.68;
}

.document-status-note p:last-child { margin-bottom: 0; }

/* Copyright and legal links are 12px normal text. Keep their foreground above
   the WCAG AA 4.5:1 contrast threshold against the light footer background. */
.footer-bottom {
  color: #657083;
}

/* Decision-summary helper text must remain readable as normal-size text. */
.svea-decision__eyebrow,
.svea-decision__actions > small {
  color: #657083 !important;
}

@media (max-width: 860px) {
  .benefit-strip,
  .regulatory-update__grid {
    grid-template-columns: 1fr;
  }

  .regulatory-update { padding: 38px 0; }
  .regulatory-update__card { padding: 18px; }
  .document-status-note { padding: 18px; }
}

@media (max-width: 768px) {
  /* The retained Attefall article has separate mobile and desktop DOM trees.
     Generic blog.css assumes single-source articles, so isolate the mobile tree
     after all shared styles have loaded and prevent duplicate visible H1s. */
  body.svea-legacy-dual-layout .mobile-main {
    display: flex !important;
  }

  body.svea-legacy-dual-layout main > *:not(.mobile-main) {
    display: none !important;
  }

  /* Keep iOS from auto-zooming focused form controls and preserve readable
     touch-form typography across the visible contact form. */
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    font-size: 16px !important;
  }
}
