@import url("/assets/css/tokens.css");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(72rem 52rem at -12% -12%, rgba(92, 168, 154, 0.18) 0, transparent 58%),
    radial-gradient(60rem 42rem at 112% -18%, rgba(132, 184, 209, 0.18) 0, transparent 60%),
    var(--bg);
  line-height: 1.6;
}

html[lang^="en"] body {
  font-family: var(--font-body-en);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: var(--locale-switch-height, 38px);
  margin: 0 0 var(--space-3) auto;
  padding: var(--locale-switch-padding, 2px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: var(--locale-switch-font-size, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow-soft);
}

.locale-switch a,
.locale-switch span[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--locale-switch-item-height, 32px);
  padding: 0.25rem var(--locale-switch-item-inline, 0.55rem);
  border-radius: var(--radius-pill);
}

.locale-switch a {
  color: var(--color-brand-strong);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms var(--motion-snappy);
}

.locale-switch a:hover,
.locale-switch a:focus-visible {
  background: var(--color-brand-wash);
}

.locale-switch a:active {
  transform: scale(0.96);
}

.locale-switch span[aria-current="page"] {
  background: var(--color-brand);
  color: var(--color-surface);
}

.article-page > .locale-switch {
  display: flex;
  float: right;
  width: max-content;
}

.article-page > .kicker {
  display: flex;
  align-items: center;
  min-height: var(--locale-switch-height, 38px);
}

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero__topbar .kicker,
.hero__topbar .locale-switch {
  margin: 0;
}

.hero__topbar .kicker {
  display: flex;
  align-items: center;
  min-height: var(--locale-switch-height, 38px);
}

.hero h1,
.article-wrap {
  clear: both;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--page-top-space-desktop, 2.25rem) var(--page-inline-space, 1.2rem) 4rem;
}

.hero-partner-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 4;
  display: grid;
  justify-items: center;
}

.hero-partner-badge img {
  display: block;
  width: 160px;
  height: auto;
}

.hero-partner-badge--mobile {
  display: none;
  position: static;
  justify-content: center;
}

.hero__inner {
  margin: 0 auto;
  max-width: 980px;
  animation: rise 600ms var(--motion-snappy) both;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-dark);
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
}

.hero h1 > span {
  display: block;
  color: var(--brand);
}

.lead {
  margin-top: 1.1rem;
  color: var(--ink-soft);
}

.hero__actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 641px) {
  .hero__actions {
    justify-content: center;
  }

  .hero--english .hero__actions {
    gap: var(--space-2);
  }

  .hero--english .hero__actions .btn {
    padding-right: 0.86rem;
    padding-left: 0.86rem;
    font-size: 0.92rem;
  }
}

.hero__visual {
  margin: 1.2rem 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-raised);
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.hero-link-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.hero-link-actions .text-link--outline-center {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.22s var(--motion-snappy),
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(13, 61, 54, 0.22);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #f4f8f7;
  border-color: #b9cfca;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.hero__glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 168, 154, 0.18), rgba(92, 168, 154, 0));
  z-index: 1;
  pointer-events: none;
}

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.8rem 1.2rem 2.6rem;
}

main > .section:first-child {
  padding-top: 1rem;
}

.section + .section {
  margin-top: 0.45rem;
}

main > .section:last-child {
  padding-bottom: 1.75rem;
}

.section__head {
  margin-bottom: 1rem;
}

.section__head h2 {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 0 0 0.45rem;
  border-bottom: 1px solid #dfe8e6;
  background: transparent;
  box-shadow: none;
}

.section__head p {
  color: var(--ink-soft);
  margin: 0.4rem 0 0;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero--english .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 641px) and (max-width: 980px) {
  .hero {
    padding-top: var(--page-top-space-tablet, 1.6rem);
  }
}

.edition-availability {
  margin: var(--space-4) 0 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.affiliate-booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 15rem);
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.affiliate-booking-panel h3,
.affiliate-booking-panel p {
  margin: 0;
}

.affiliate-booking-panel h3 {
  color: var(--color-brand-strong);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  letter-spacing: -0.018em;
}

.affiliate-booking-panel h3 + p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.affiliate-booking-panel__brand {
  display: block;
  width: var(--affiliate-partner-logo-width, 7rem);
  height: auto;
  margin-bottom: var(--space-3);
}

.affiliate-booking-panel__disclosure {
  margin-top: var(--space-4) !important;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.affiliate-booking-panel__action {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
}

.affiliate-booking-panel__action .btn {
  width: 100%;
}

.affiliate-booking-panel__action .text-link {
  margin: 0;
  font-size: 0.86rem;
  text-align: center;
}

.section__head--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.section__head--split .text-link {
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  display: block;
  margin-bottom: 0.45rem;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--brand-dark);
  border-left: 4px solid #7be0c9;
  border-bottom: 2px solid #dfe8e6;
  padding-left: 0.5rem;
  padding-bottom: 0.2rem;
}

.tag {
  color: var(--brand-dark);
  font-weight: 700;
  margin: 0.5rem 0;
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--brand);
  font-weight: 700;
}

/* Keep standalone CTA-style links while making in-sentence usage inline-safe. */
.article-section p .text-link,
.article-section li .text-link {
  display: inline;
  margin-top: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link {
  color: var(--brand);
  font-weight: 700;
}

.external-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.external-link:hover,
.external-link:focus-visible {
  color: var(--brand-dark);
}

.text-link--outline-center {
  display: table;
  margin: 1.15rem auto 0;
  padding: 0.58rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  line-height: 1.35;
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  backdrop-filter: blur(14px) saturate(145%);
  transition:
    transform 0.22s var(--motion-snappy),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.text-link--outline-center:hover,
.text-link--outline-center:focus-visible {
  background: #f4f8f7;
  border-color: #b9cfca;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.text-link--outline-center:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.video-embed {
  position: relative;
  margin: 0.9rem 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #10211e;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #10211e;
  cursor: pointer;
  touch-action: manipulation;
}

.youtube-facade__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.youtube-facade__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 4.25rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: #ff0033;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 120ms ease-out, background-color 120ms ease-out;
}

.youtube-facade__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 1rem solid #fff;
  transform: translate(-50%, -50%);
}

.youtube-facade:hover .youtube-facade__play,
.youtube-facade:focus-visible .youtube-facade__play {
  background: #e6002e;
  transform: translate(-50%, -50%) scale(1.04);
}

.youtube-facade:active .youtube-facade__play {
  transform: translate(-50%, -50%) scale(0.94);
}

.youtube-facade__status {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-50%);
}

.youtube-facade[aria-busy="true"] .youtube-facade__play {
  opacity: 0;
}

.youtube-facade[aria-busy="true"] .youtube-facade__status {
  opacity: 1;
}

.video-reference-lead {
  margin-top: 1.2rem;
}

.article-image-placeholder + .video-reference-lead {
  margin-top: 1.6rem;
}

.section--alt {
  border: 0;
}

.section--divider {
  border: 0;
}

.timeline {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
}

.season-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
}

.season-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.season-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--brand-dark);
  white-space: nowrap;
}

.season-icon {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.season-card p {
  margin: 0.3rem 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.season-card p strong {
  color: var(--ink);
}

.season-line {
  display: grid;
  grid-template-columns: 4.6em 1fr;
  column-gap: 0.45rem;
  align-items: start;
}

.season-line strong {
  white-space: nowrap;
}

.season-line span {
  min-width: 0;
}

.guide-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cards--plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--plans .card h3 {
  font-size: 1.12rem;
}

.plan-group + .plan-group {
  margin-top: 3rem;
}

.plan-group-title {
  margin: 0 0 1.8rem;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--brand-dark);
}

.section__action {
  margin: 2.4rem 0 0;
  text-align: center;
}

.section__action--plans {
  margin: 2.6rem 0 0;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 7px 20px rgba(15, 46, 42, 0.045);
}

.guide-card h3 {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.guide-icon {
  font-size: 1rem;
  line-height: 1;
}

.guide-card p {
  margin: 0;
  color: var(--ink-soft);
}

.checklist {
  display: grid;
  gap: 0.7rem;
}

.top-ads__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.top-ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  overflow: hidden;
}

.top-ad-slot--article {
  justify-content: flex-start;
}

.top-ad-slot img,
.top-ad-slot iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

.top-ad-slot a {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
}

.top-ads--mobile-only {
  display: none;
}

.top-ads--desktop-only {
  display: block;
}

.section-visual {
  margin: 0 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #f8faf8;
}

.section-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.section-visual.top-section-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-visual--portrait img {
  width: auto;
  max-height: min(760px, 82vh);
}

.section-visual--focus-top img {
  object-position: center 22%;
}

.section-visual--focus-edge-top img {
  object-position: center 12%;
}

.section-visual--focus-bottom img {
  object-position: center 78%;
}

.section-visual--square-sm {
  max-width: 220px;
  margin-top: 0.7rem;
}

.section-visual--square-sm img {
  aspect-ratio: 1 / 1;
}

.section-visual--square-md {
  max-width: 320px;
  margin-top: 0.7rem;
}

.section-visual--square-md img {
  aspect-ratio: 1 / 1;
}

.section-visual--square-lg {
  max-width: 360px;
  margin-top: 0.7rem;
}

.section-visual--square-lg img {
  aspect-ratio: 1 / 1;
}

[class*="section-visual--square"] img {
  aspect-ratio: 1 / 1;
}

.checklist a {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 0.72rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem 1.5rem 0.55rem 0.65rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
  transition:
    transform 0.22s var(--motion-snappy),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.checklist a::after {
  content: "›";
  position: absolute;
  right: 0.72rem;
  top: 50%;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand-dark);
  opacity: 0.46;
  transform: translateY(-50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.checklist a:hover,
.checklist a:focus-visible {
  background: #f4f8f7;
  border-color: #b9cfca;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.checklist a:hover::after,
.checklist a:focus-visible::after {
  opacity: 0.9;
  transform: translate(2px, -50%);
}

.checklist a:active {
  transform: scale(0.985);
  transition-duration: 100ms;
}

.checklist a img {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.checklist a span {
  min-width: 0;
}

@media (max-width: 980px) {
  .checklist a {
    grid-template-columns: 64px 1fr;
    gap: 0.62rem;
  }

  .checklist a img {
    width: 64px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .checklist a {
    grid-template-columns: 56px 1fr;
    gap: 0.55rem;
  }

  .checklist a img {
    width: 56px;
    height: 42px;
  }
}

.support-card__image {
  margin: 0 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.support-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid--single {
  grid-template-columns: 1fr;
}

.contact-form--compact {
  max-width: none;
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.contact-form .label-text {
  display: inline-flex;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button[type="submit"] {
  margin-top: 1rem;
}

.required {
  color: #b45309;
  margin-left: 0.18em;
}

.form-note {
  margin: 0.8rem 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer {
  margin: 0 auto;
  padding: 0 1.2rem 1.75rem;
  max-width: 980px;
  color: var(--ink-soft);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer__menu a {
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
  transition:
    transform 0.2s var(--motion-snappy),
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.footer__menu a:hover,
.footer__menu a:focus-visible {
  background: #f4f8f7;
  border-color: #b9cfca;
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.footer__menu a:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.footer p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.footer small {
  display: block;
  margin-top: 0.4rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: var(--page-top-space-mobile, 1rem);
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
    line-height: 1.25;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .btn {
    width: auto;
    text-align: center;
    padding: 0.58rem 0.72rem;
    font-size: 0.88rem;
  }

  .hero__actions .btn--primary {
    grid-column: 1 / -1;
  }

  .section__head--split {
    display: block;
  }

  .section__head--split .text-link {
    display: inline-flex;
    margin-top: 0.75rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .season-card h3 {
    white-space: normal;
  }

  .cards--plans {
    grid-template-columns: 1fr;
  }

  .top-ads__grid {
    grid-template-columns: 1fr;
  }

  .top-ads {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .top-ad-slot {
    min-height: 0;
  }

  .top-ad-slot--desktop-only {
    display: none;
  }

  .top-ads--mobile-only {
    display: block;
  }

  .top-ads--desktop-only {
    display: none;
  }

  .hero__visual img {
    aspect-ratio: 16 / 10;
  }

  .section-visual img {
    aspect-ratio: auto;
  }

  .section-visual--portrait img {
    max-height: 78vh;
  }

  [class*="section-visual--square"] img {
    aspect-ratio: 1 / 1;
  }

  .article-step-gallery {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer p {
    text-align: left;
  }

  .affiliate-booking-panel {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-5);
  }

  .affiliate-booking-panel__action {
    justify-items: stretch;
  }

  .article-page .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-list .blog-card a {
    display: block;
  }

  .blog-list .blog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .blog-list .blog-card h2 {
    display: flex;
    align-items: center;
    padding: 0.72rem 0.75rem;
    font-size: 0.96rem;
    line-height: 1.35;
  }

}

@media (max-width: 360px) {
  .hero__topbar {
    gap: var(--space-2);
  }

  .hero__topbar .kicker,
  .article-page > .kicker {
    min-height: auto;
    white-space: nowrap;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

}

@media (max-width: 980px) and (min-width: 641px) {
  .cards--plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-page .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: var(--page-top-space-desktop, 2.25rem) var(--page-inline-space, 1.2rem) 1.75rem;
}

.article-wrap {
  background: #fff;
  border: 1px solid rgba(213, 225, 222, 0.9);
  border-radius: 24px;
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
  box-shadow: 0 24px 64px rgba(15, 46, 42, 0.09);
}

.article-breadcrumb {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.article-page h1 {
  font-size: clamp(1.6rem, 4.6vw, 2.3rem);
  color: var(--brand-dark);
  word-break: auto-phrase;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.article-lead {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

.affiliate-disclosure {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.article-key-point {
  margin: 0.9rem 0 0;
  padding: 0.72rem 0.86rem;
  border-radius: 10px;
  border: 1px solid #d7e5df;
  background: #f6faf8;
  color: #263a35;
  font-weight: 700;
}

.article-key-point strong {
  color: #1f2c1b;
}

.article-wrap > .section-visual {
  margin-top: 1rem;
}

.article-wrap > .section-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-section {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e7eeee;
}

.article-section h2 {
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.article-section h2.heading-related {
  display: block;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: #f4f8f7;
  border: 1px solid var(--line);
}

.article-section h3 {
  margin: 1.2rem 0 0.55rem;
  color: var(--brand-dark);
}

.article-section h4 {
  margin: 1rem 0 0.4rem;
  color: #365b53;
  font-size: 1rem;
}

.article-section p {
  margin: 0.72rem 0 0;
}

.article-section p + .section-visual {
  margin-top: 1.05rem;
}

.article-section p + table {
  margin-top: 0.95rem;
}

.article-section .article-list + .section-visual {
  margin-top: 1.05rem;
}

.article-section .table-wrap + .section-visual {
  margin-top: 1.05rem;
}

.article-section p + h3,
.article-section .article-cta + h3 {
  margin-top: 1.75rem;
}

.article-section p + h4,
.article-section .article-cta + h4 {
  margin-top: 1.4rem;
}

.article-section .accent-heading {
  display: block;
  position: relative;
  padding: 0 0 0.45rem 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #dfe8e6;
  background: transparent;
  box-shadow: none;
}

.article-section .accent-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.06rem;
  bottom: 0.5rem;
  width: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.route-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.75rem;
}

@media (max-width: 980px) and (min-width: 641px) {
  .article-page {
    padding: var(--page-top-space-tablet, 1.6rem) var(--article-inline-space-tablet, 1rem) 1.5rem;
  }

  .article-page > .locale-switch {
    margin-right: calc(var(--page-inline-space, 1.2rem) - var(--article-inline-space-tablet, 1rem));
  }

  .article-page > .kicker {
    margin-left: calc(var(--page-inline-space, 1.2rem) - var(--article-inline-space-tablet, 1rem));
  }

  .article-wrap {
    padding: 1.2rem;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .article-page {
    padding: var(--page-top-space-mobile, 1rem) var(--article-inline-space-mobile, 0.6rem) 1.2rem;
  }

  .article-page > .locale-switch {
    margin-right: calc(var(--page-inline-space, 1.2rem) - var(--article-inline-space-mobile, 0.6rem));
  }

  .article-page > .kicker {
    margin-left: calc(var(--page-inline-space, 1.2rem) - var(--article-inline-space-mobile, 0.6rem));
  }

  .article-wrap {
    padding: 1rem;
    border-radius: 18px;
  }

  .article-section {
    margin-top: 1.25rem;
    padding-top: 0.85rem;
  }
}

.route-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.route-card h3 {
  margin: 0 0 0.4rem;
}

.route-card p {
  margin: 0;
}

.route-jump {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  width: 100%;
  min-height: 100%;
  padding: 0.9rem;
  font-weight: 900;
  color: var(--brand-dark);
  transition:
    transform 0.2s var(--motion-snappy),
    background-color 0.2s ease;
}

.route-jump:hover,
.route-jump:focus-visible {
  background: #f4f8f7;
}

.route-jump:active {
  transform: scale(0.985);
  transition-duration: 100ms;
}

.route-icon {
  font-size: 1.02rem;
  line-height: 1;
}

.route-hint {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .route-grid--two {
    grid-template-columns: 1fr;
  }
}

.article-list {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.article-list a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.article-list a.inline-link {
  font-weight: 700;
  text-decoration: none;
}

.article-list a:hover,
.article-list a:focus-visible {
  color: var(--brand-dark);
}

.article-links {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}

.article-links--inline {
  margin-top: 0.8rem;
}

.article-links a {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 0.72rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.55rem 1.5rem 0.55rem 0.65rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
  transition:
    transform 0.22s var(--motion-snappy),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.article-links a::after {
  content: "›";
  position: absolute;
  right: 0.72rem;
  top: 50%;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand-dark);
  opacity: 0.46;
  transform: translateY(-50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.article-links a:hover,
.article-links a:focus-visible {
  background: #f4f8f7;
  border-color: #b9cfca;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.article-links a:hover::after,
.article-links a:focus-visible::after {
  opacity: 0.9;
  transform: translate(2px, -50%);
}

.article-links a:active {
  transform: scale(0.985);
  transition-duration: 100ms;
}

.article-links a img {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.article-links a span {
  min-width: 0;
}

@media (max-width: 980px) {
  .article-links a {
    grid-template-columns: 64px 1fr;
    gap: 0.62rem;
  }

  .article-links a img {
    width: 64px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .article-links a {
    grid-template-columns: 56px 1fr;
    gap: 0.55rem;
  }

  .article-links a img {
    width: 56px;
    height: 42px;
  }
}

.article-image-placeholder {
  margin-top: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px dashed #b8c2aa;
  border-radius: 12px;
  background: #f7fbe7;
}

.article-step-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.7rem;
  max-width: 480px;
}

.article-step-gallery .section-visual {
  margin-bottom: 0;
  max-width: none;
}

.article-step-gallery img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #f6f8f1;
}

.article-step-wide {
  max-width: 520px;
  margin-top: 0.7rem;
}

.article-step-wide img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #f6f8f1;
}

.article-phone-visual {
  width: 220px;
  max-width: 65%;
  margin: 0.95rem 0 0;
}

.article-phone-visual img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #050505;
}

.article-image-placeholder p {
  margin: 0;
}

.store-badges {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.store-download-box {
  margin-top: 0.8rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #cfd8bf;
  border-radius: 12px;
  background: #f6faea;
}

.store-download-box p {
  margin: 0;
  font-weight: 700;
  color: #33422e;
}

.article-alert-box {
  margin-top: 0.8rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid #f0d7a4;
  border-radius: 12px;
  background: #fff8eb;
}

.article-alert-box p {
  margin: 0;
  font-weight: 700;
  color: #5f4618;
}

.article-alert-box h3 {
  margin: 0 0 0.55rem;
}

.article-alert-box .article-list {
  margin: 0;
}

.article-alert-box .article-list + p {
  margin-top: 0.65rem;
}

.store-badges a {
  display: inline-flex;
}

.store-badges img {
  width: auto;
  height: 48px;
  border-radius: 8px;
  display: block;
}

.article-cta {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

.comparison-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0.9rem auto 1rem;
}

.comparison-actions .btn {
  width: 100%;
  min-height: 48px;
  padding-inline: 0.8rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .comparison-actions {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.table-wrap {
  margin-top: 0.7rem;
  overflow-x: auto;
}

.flight-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.flight-table th,
.flight-table td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid #e8e2d7;
  text-align: left;
  font-size: 0.93rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: top;
}

.flight-table th {
  background: #f5efe4;
  color: var(--brand-dark);
  font-weight: 900;
}

.flight-table tr:last-child td {
  border-bottom: 0;
}

.simple-table {
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.simple-table th {
  width: 8.5rem;
  white-space: normal;
}

.simple-table td {
  width: auto;
}

.simple-table tr:last-child th {
  border-bottom: 0;
}

.hotel-summary {
  margin: 0.85rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.hotel-summary div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.34fr) 1fr;
  border-bottom: 1px solid #e8e2d7;
}

.hotel-summary div:last-child {
  border-bottom: 0;
}

.hotel-summary dt,
.hotel-summary dd {
  margin: 0;
  padding: 0.62rem 0.7rem;
  font-size: 0.93rem;
}

.hotel-summary dt {
  background: #f5efe4;
  color: var(--brand-dark);
  font-weight: 900;
}

.hotel-summary dd {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .table-wrap {
    overflow-x: visible;
  }

  .flight-table {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .flight-table colgroup,
  .flight-table thead {
    display: none;
  }

  .flight-table tbody {
    display: block;
  }

  .flight-table tr {
    display: block;
    border: 0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px var(--line);
  }

  .flight-table tr + tr {
    margin-top: 0.58rem;
  }

  .flight-table tr td:first-child {
    background: #f5efe4;
  }

  .flight-table tr:last-child {
    border-bottom: 0;
  }

  .flight-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.7rem;
    width: 100%;
    padding: 0.54rem 0.65rem;
    border-bottom: 0;
    font-size: 0.9rem;
    text-align: right;
    white-space: normal !important;
  }

  .flight-table tr td + td {
    border-top: 1px solid #d8e1dd;
  }

  .flight-table td::before {
    content: attr(data-label);
    color: var(--ink-soft);
    font-weight: 700;
    flex: 0 0 5.8em;
    text-align: left;
  }

  .flight-table td .airline-cell {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 0.32rem;
    text-align: right;
    white-space: normal !important;
  }

  .flight-table td .airline-cell span {
    white-space: normal !important;
  }

  .flight-table td .airline-cell span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hotel-summary div {
    grid-template-columns: minmax(5.8rem, 0.36fr) 1fr;
  }

  .simple-table {
    display: table;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
  }

  .simple-table tbody {
    display: table-row-group;
  }

  .simple-table tr {
    display: table-row;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .simple-table tr + tr {
    margin-top: 0;
  }

  .simple-table th,
  .simple-table td {
    display: table-cell;
    padding: 0.58rem 0.65rem;
    border-bottom: 1px solid #e8e2d7;
    font-size: 0.9rem;
    text-align: left;
    vertical-align: top;
  }

  .simple-table th {
    width: 7.2rem;
    background: #f5efe4;
    color: var(--brand-dark);
    font-weight: 900;
    white-space: normal;
  }

  .simple-table td {
    text-align: left;
    width: auto;
  }

  .simple-table td::before {
    content: none;
  }

  .simple-table tr:last-child th,
  .simple-table tr:last-child td {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .flight-table td {
    padding: 0.5rem 0.6rem;
    gap: 0.55rem;
  }

  .flight-table td::before {
    flex-basis: 5.2em;
  }

  .platform-comparison-table td::before {
    flex-basis: 7.6em;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hotel-summary dt,
  .hotel-summary dd {
    padding: 0.58rem 0.65rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .table-wrap--weather {
    overflow-x: auto;
  }

  .weather-table {
    display: table;
    table-layout: fixed;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card);
    overflow: hidden;
  }

  .weather-table colgroup {
    display: table-column-group;
  }

  .weather-table thead {
    display: table-header-group;
  }

  .weather-table tbody {
    display: table-row-group;
  }

  .weather-table tr,
  .weather-table tr + tr {
    display: table-row;
    margin-top: 0;
    border-radius: 0;
    background: var(--card);
    box-shadow: none;
  }

  .weather-table th,
  .weather-table td {
    display: table-cell;
    width: auto;
    padding: 0.5rem 0.42rem;
    border-bottom: 1px solid #e8e2d7;
    font-size: 0.8rem;
    line-height: 1.35;
    text-align: left;
    vertical-align: top;
  }

  .weather-table tr td:first-child {
    background: var(--card);
    font-weight: 800;
  }

  .weather-table tr td + td {
    border-top: 0;
  }

  .weather-table td::before {
    content: none;
  }
}

@media (max-width: 420px) {
  .weather-table th,
  .weather-table td {
    padding: 0.44rem 0.28rem;
    font-size: 0.75rem;
  }
}

.airline-cell {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
}

.airline-lcc {
  display: inline-block;
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.blog-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
}

.category-tab {
  flex: 0 0 auto;
  padding: 0.5rem 0.88rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--motion-snappy);
}

.category-tab:hover,
.category-tab:focus-visible {
  border-color: rgba(22, 102, 90, 0.4);
  background: var(--card);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.category-tab.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

@media (max-width: 640px) {
  .category-tabs {
    gap: 0.45rem;
    margin-top: 1.1rem;
  }

  .category-tab {
    padding: 0.46rem 0.72rem;
    font-size: 0.88rem;
  }
}

.blog-list--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.blog-list--featured .blog-card:nth-child(n + 7) {
  display: none;
}

@media (max-width: 980px) and (min-width: 641px) {
  .blog-list--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list--featured .blog-card:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 640px) {
  .blog-list--featured {
    grid-template-columns: 1fr;
  }

  .blog-list--featured .blog-card:nth-child(n + 4) {
    display: none;
  }
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.26s var(--motion-snappy),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.26s ease;
}

.blog-card a {
  display: block;
  min-height: 100%;
  touch-action: manipulation;
}

.blog-card:hover,
.blog-card:focus-within {
  background: #f4f8f7;
  border-color: #bdd1cc;
}

.blog-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s var(--motion-snappy);
}

.blog-card h2 {
  margin: 0;
  padding: 0.9rem;
  font-size: 1rem;
  color: var(--brand-dark);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0;
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c9dfd8;
  background: rgba(237, 248, 244, 0.82);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.62rem;
  transition:
    transform 0.2s var(--motion-snappy),
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.article-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid #c9dfd8;
  background: rgba(237, 248, 244, 0.82);
  color: var(--color-brand-strong);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.62rem;
}

.blog-list--single {
  grid-template-columns: minmax(0, 640px);
}

.article-tags a:hover,
.article-tags a:focus-visible {
  background: #e4f3ee;
  border-color: #a9cbc2;
  transform: translateY(-1px);
}

.article-tags a:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover,
  .blog-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-raised);
  }

  .blog-card:hover img,
  .blog-card:focus-within img {
    transform: scale(1.018);
  }
}

.blog-card:active {
  transform: scale(0.985);
  transition-duration: 100ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .blog-card:hover,
  .blog-card:focus-within,
  .blog-card:hover img,
  .blog-card:focus-within img,
  .btn:hover,
  .btn:focus-visible,
  .article-links a:hover,
  .article-links a:focus-visible,
  .checklist a:hover,
  .checklist a:focus-visible {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .btn--ghost,
  .text-link--outline-center,
  .locale-switch,
  .footer__inner {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #8ea39e;
    --ink-soft: #34443f;
  }

  .btn--ghost,
  .text-link--outline-center,
  .locale-switch,
  .footer__inner,
  .blog-card,
  .article-wrap {
    background: #fff;
    border-color: var(--line);
  }
}
