:root {
  --bg: #f7f3ea;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #1f2933;
  --muted: #667085;
  --line: rgba(31, 41, 51, 0.12);
  --accent: #d84b39;
  --navy: #1f3a5f;
  --blue: #2348a9;
  --max: 1040px;
  --header-height: 67px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

main,
section,
article,
aside,
div {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--header-height);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 75, 57, 0.14), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(35, 72, 169, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 58%, #eef4f1 100%);
  line-height: 1.75;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner,
main,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(31, 41, 51, 0.14));
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

nav a:hover,
.link-arrow {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  cursor: pointer;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 58px 0 28px;
}

.kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  color: #1d4698;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-weight: 900;
}

.button.primary {
  color: #fff;
  border-color: rgba(35, 72, 169, 0.34);
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 14px 30px rgba(42, 84, 181, 0.2);
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 12px 24px rgba(42, 84, 181, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin: 48px 0 18px;
}

h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.card,
.article-panel,
.notice {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.card {
  min-height: 220px;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.label,
.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.label {
  padding: 6px 10px;
  color: #1f4aa5;
  background: rgba(35, 72, 169, 0.08);
}

.tag {
  padding: 5px 9px;
  color: var(--muted);
  border: 1px solid rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.card p,
.article-panel p,
.article-panel li,
.notice {
  color: var(--muted);
  font-weight: 650;
}

.card p {
  margin: 0;
  font-size: 14px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 950;
}

.article-panel {
  border-radius: 24px;
  padding: 26px;
  margin-bottom: 16px;
}

.article-panel h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.article-panel h3 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.article-panel p {
  margin: 10px 0 0;
}

.article-panel ul,
.article-panel ol {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.affiliate-slot {
  margin-top: 18px;
  border: 1px dashed rgba(35, 72, 169, 0.28);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.affiliate-slot strong {
  color: var(--text);
}

.notice {
  border-radius: 20px;
  padding: 18px;
  font-size: 13px;
}

.ad-disclosure {
  width: fit-content;
  margin: 18px 0 0;
  padding: 7px 11px;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.related-guides {
  margin: 34px 0 18px;
}

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

.related-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.related-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1f4aa5;
  background: rgba(35, 72, 169, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.related-card strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.28;
}

.related-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.1);
}

footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 820px) {
  nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(31, 41, 51, 0.14);
  }

  .header-inner nav.is-open {
    display: flex;
  }

  .header-inner nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .header-inner nav a:hover {
    background: rgba(35, 72, 169, 0.07);
  }

  .section-head {
    display: block;
  }

  .section-note {
    margin-top: 8px;
  }

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

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

@media (max-width: 520px) {
  .header-inner,
  main,
  .footer-inner {
    width: min(100% - 22px, var(--max));
  }

  .hero {
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }

  .card,
  .article-panel {
    border-radius: 20px;
    padding: 18px;
  }
}

/* Packing guide additions */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  box-shadow: 0 20px 52px rgba(31, 41, 51, 0.09);
}

.hero-visual-card .image-figure {
  margin: 0;
}

.hero-visual-card .image-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
}

.image-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(35, 72, 169, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(35, 72, 169, 0.08), rgba(216, 75, 57, 0.08)),
    repeating-linear-gradient(45deg, rgba(31, 41, 51, 0.04) 0 10px, rgba(255, 255, 255, 0.42) 10px 20px);
  color: var(--muted);
  font-weight: 850;
  min-height: 180px;
  padding: 20px;
}

.image-placeholder.large {
  min-height: 340px;
}

.image-placeholder.medium {
  min-height: 320px;
}

.image-placeholder.small {
  min-height: 150px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.image-placeholder strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 17px;
}

.image-placeholder span {
  display: block;
  max-width: 280px;
  margin-top: 6px;
  font-size: 13px;
}

.placeholder-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  color: #1f4aa5;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(35, 72, 169, 0.14);
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
  font-weight: 950;
  letter-spacing: 0.08em;
}


.guide-image {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);
  object-fit: contain;
  object-position: center;
}

.hero-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.diagram-image {
  justify-self: center;
  width: min(100%, 840px);
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.season-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border-radius: 20px;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini-stats div {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: #1f4aa5;
  font-size: 18px;
  line-height: 1.1;
}

.mini-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.intro-panel {
  margin-top: 8px;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.rule-card {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.rule-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  font-size: 12px;
  font-weight: 950;
}

.rule-card h3 {
  margin-top: 14px;
}

.page-jump {
  position: sticky;
  top: 70px;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 24px 0 34px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.page-jump a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.page-jump a:hover {
  color: var(--navy);
  background: rgba(35, 72, 169, 0.08);
}

.compact-head {
  margin-top: 34px;
}

.checklist-grid,
.scenario-grid,
.product-grid {
  display: grid;
  gap: 16px;
}

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

.checklist-card,
.scenario-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.checklist-card {
  padding: 22px;
}

.checklist-card h3,
.scenario-card h3,
.product-card h3 {
  margin: 14px 0 12px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.check-row:first-of-type {
  border-top: 0;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.bag-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  overflow: hidden;
}

.bag-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bag-step {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.bag-step span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1f4aa5;
  background: rgba(35, 72, 169, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 18px;
}

.packing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.packing-table th,
.packing-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.packing-table th {
  color: var(--navy);
  background: rgba(35, 72, 169, 0.08);
  font-weight: 950;
}

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

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

.scenario-card {
  padding: 18px;
}

.scenario-card ul,
.product-card ul {
  margin: 12px 0 0;
  padding-left: 1.15em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.product-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #d84b39, #eb7954);
  box-shadow: 0 12px 22px rgba(216, 75, 57, 0.18);
  font-size: 12px;
  font-weight: 950;
}

.product-visual-link {
  flex: 0 0 92px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.08);
}

.product-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.amazon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #232f3e, #37475a);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.16);
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.card-button.muted {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.timeline-list {
  display: grid;
  gap: 12px;
  padding-left: 0 !important;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.timeline-list strong {
  color: var(--navy);
}

.timeline-list span {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-split,
  .bag-layout,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .checklist-grid,
  .scenario-grid,
  .product-grid,
  .rule-grid,
  .bag-steps {
    grid-template-columns: 1fr;
  }

  .image-placeholder.large,
  .image-placeholder.medium {
    min-height: 240px;
  }

  .diagram-image {
    width: 100%;
    min-height: 0;
    height: auto;
  }

  .page-jump {
    top: calc(var(--header-height) + 10px);
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .hero-visual-card,
  .checklist-card,
  .scenario-card,
  .product-card {
    border-radius: 20px;
    padding: 16px;
  }


  .mini-stats {
    grid-template-columns: 1fr;
  }

  .product-top {
    display: flex;
    gap: 12px;
  }

  .product-visual-link {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

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

  .guide-image,
  .hero-image,
  .diagram-image,
  .season-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .guide-image {
    border-radius: 16px;
  }
}

/* Rainy day guide additions */
.rainy-hero .hero-image {
  object-position: center;
}

.rain-core-panel {
  margin-top: 8px;
}

.rain-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.rain-principle {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.rain-principle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  font-size: 12px;
  font-weight: 950;
}

.rain-principle h3 {
  margin: 14px 0 6px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.3;
}

.rain-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.rain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
}

.rain-experience-card {
  border: 1px solid rgba(35, 72, 169, 0.12);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 10% 10%, rgba(35, 72, 169, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.7);
}

.rain-experience-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.rain-tip-list {
  display: grid;
  gap: 12px;
}

.shoe-pick-card {
  margin-top: 0;
}

.shoe-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 10px;
}

.shoe-highlight {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.shoe-highlight strong,
.shoe-highlight span {
  display: block;
}

.shoe-highlight strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.shoe-highlight span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 750;
}

.shoe-table-wrap {
  margin-top: 16px;
  margin-bottom: 16px;
}

.shoe-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.featured-product {
  border-color: rgba(216, 75, 57, 0.24);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 75, 57, 0.12), transparent 28%),
    var(--surface);
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(35, 72, 169, 0.16);
}

@media (max-width: 900px) {
  .rain-principles,
  .rain-layout,
  .shoe-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Rainy-day guide v2 */
body.rain-page {
  --rain-bg: #f6f9fc;
  --rain-surface: #ffffff;
  --rain-surface-soft: #f8fbff;
  --rain-line: #dbe7f3;
  --rain-line-strong: #bfd3e7;
  --rain-text: #16324f;
  --rain-muted: #5c7692;
  --rain-accent: #2f7bdc;
  --rain-accent-soft: #e9f3ff;
  --rain-accent-strong: #1f5fb0;
  --rain-shadow: 0 14px 40px rgba(30, 69, 110, 0.10);
  --rain-shadow-soft: 0 8px 24px rgba(30, 69, 110, 0.08);
  --rain-radius-xl: 28px;
  --rain-radius-lg: 20px;
  --rain-max: 1180px;
  color: var(--rain-text);
  background:
    radial-gradient(circle at top right, rgba(86, 173, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8fd 100%);
}

.rain-main {
  padding: 28px 0 72px;
}

.rain-container {
  width: min(calc(100% - 32px), var(--rain-max));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.rain-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(245,250,255,0.96));
  border: 1px solid rgba(191, 211, 231, 0.72);
  border-radius: var(--rain-radius-xl);
  box-shadow: var(--rain-shadow);
}

.rain-hero-copy,
.rain-hero-card {
  min-width: 0;
}

.rain-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--rain-accent-soft);
  color: var(--rain-accent-strong);
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.rain-kicker-small {
  font-size: 0.8rem;
}

.rain-hero h1 {
  margin: 18px 0 14px;
  color: var(--rain-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rain-lead {
  margin: 0;
  color: var(--rain-muted);
  font-size: 1.05rem;
  font-weight: 650;
}

.rain-actions,
.rain-page-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rain-actions {
  margin-top: 22px;
}

.rain-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--rain-line-strong);
  background: #fff;
  color: var(--rain-accent-strong);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(49, 91, 145, 0.08);
}

.rain-button-primary {
  background: linear-gradient(135deg, #2f7bdc, #4693ef);
  border-color: #2f7bdc;
  color: #fff;
}

.rain-hero-card {
  background: linear-gradient(180deg, rgba(243,249,255,0.9), rgba(255,255,255,0.96));
  border: 1px solid var(--rain-line);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.rain-hero-image {
  aspect-ratio: 16 / 12;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(191, 211, 231, 0.72);
}

.rain-hero-summary {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rain-hero-summary li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--rain-line);
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-hero-summary strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rain-accent-soft);
  color: var(--rain-accent-strong);
  font-size: 0.82rem;
}

.rain-page-jump {
  padding: 16px 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--rain-line);
  border-radius: 18px;
  box-shadow: var(--rain-shadow-soft);
}

.rain-page-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rain-line);
  color: var(--rain-muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.rain-panel,
.rain-theme-section {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(191, 211, 231, 0.72);
  border-radius: var(--rain-radius-xl);
  box-shadow: var(--rain-shadow-soft);
}

.rain-panel {
  padding: 26px;
}

.rain-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.rain-section-head-tight {
  margin-bottom: 16px;
}

.rain-section-head h2,
.rain-panel h2 {
  margin: 10px 0 0;
  color: var(--rain-text);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.rain-section-head h3 {
  margin: 10px 0 0;
  color: var(--rain-text);
  font-size: 1.5rem;
  line-height: 1.35;
}

.rain-section-note,
.rain-panel > p {
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-panel h3,
.rain-theme-section h3 {
  margin: 0 0 10px;
  color: var(--rain-text);
  font-size: 1.18rem;
  line-height: 1.4;
}

.rain-theme-section {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.rain-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.rain-principle-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(255,255,255,0.98));
  border: 1px solid var(--rain-line);
}

.rain-principle-card p {
  margin: 0;
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rain-accent-soft);
  color: var(--rain-accent-strong);
  font-weight: 800;
  margin-bottom: 12px;
}

.rain-checklist-grid,
.rain-product-grid,
.rain-tips-grid,
.rain-two-column,
.rain-highlight-points {
  display: grid;
  gap: 16px;
}

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

.rain-check-card,
.rain-tip-card,
.rain-product-card,
.rain-sub-card,
.rain-diagram-card,
.rain-compare-note,
.rain-shoe-quote {
  background: var(--rain-surface);
  border: 1px solid var(--rain-line);
  border-radius: 20px;
  padding: 20px;
}

.rain-check-card-must {
  background: linear-gradient(180deg, #eff8ff, #ffffff);
}

.rain-check-card-avoid {
  background: linear-gradient(180deg, #fff7f7, #ffffff);
}

.rain-check-card-comfort {
  background: linear-gradient(180deg, #f5fbf2, #ffffff);
}

.rain-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf4fc;
  color: var(--rain-accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.rain-checklist,
.rain-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.rain-checklist {
  gap: 10px;
}

.rain-feature-list {
  gap: 8px;
  color: var(--rain-muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.rain-checklist li,
.rain-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-checklist li::before {
  content: "✔";
  flex: 0 0 auto;
  color: var(--rain-accent-strong);
  font-weight: 800;
}

.rain-cross-list li::before {
  content: "✕";
  color: #dc5f5f;
}

.rain-feature-list li::before {
  content: "•";
  color: var(--rain-accent-strong);
  font-weight: 900;
  flex: 0 0 auto;
}

.rain-two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.rain-sub-card p,
.rain-product-card p,
.rain-tip-card p,
.rain-diagram-card p,
.rain-shoe-quote p {
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-product-block {
  display: grid;
  gap: 16px;
}

.rain-diagram-card {
  padding: 0;
  overflow: hidden;
}

.rain-diagram-figure {
  margin: 0;
}

.rain-diagram-image {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  background: #f8fbff;
}

.rain-diagram-placeholder {
  min-height: 280px;
  padding: 22px;
  background:
    linear-gradient(180deg, #f9fbff 0%, #f1f7ff 100%),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(120, 170, 220, 0.04) 12px 13px);
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
}

.rain-diagram-placeholder::after {
  content: "図解イラスト挿入予定";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #7a97b6;
  letter-spacing: 0.05em;
}

.rain-diagram-placeholder h3 {
  margin: 0;
}

.rain-diagram-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.rain-flow-box {
  background: rgba(255,255,255,0.94);
  border: 1px dashed #9dbde2;
  border-radius: 18px;
  padding: 16px;
  min-height: 158px;
}

.rain-flow-box h4 {
  margin: 0 0 10px;
  color: var(--rain-text);
  font-size: 1rem;
}

.rain-flow-box p {
  margin: 0;
  color: var(--rain-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.rain-diagram-caption {
  padding: 18px 22px 20px;
  border-top: 1px solid var(--rain-line);
  color: var(--rain-muted);
  background: #fff;
  font-weight: 650;
}

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

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

.rain-product-card {
  display: grid;
  gap: 14px;
  align-content: start;
  box-shadow: 0 10px 24px rgba(28, 67, 112, 0.06);
}

.rain-product-card-featured {
  border-color: #8cb6e6;
  background: linear-gradient(180deg, #f3f8ff, #ffffff);
}

.rain-product-top {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.rain-product-thumb {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--rain-line);
  padding: 8px;
}

.rain-product-text-thumb {
  display: grid;
  place-items: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--rain-accent-strong);
  text-align: center;
  line-height: 1.4;
}

.rain-product-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.rain-product-card p {
  margin: 0;
  color: var(--rain-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.rain-amazon-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffb11b;
  color: #202020;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 177, 27, 0.24);
}

.rain-shoe-quote {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf6ff, #ffffff);
  border: 1px solid var(--rain-line);
}

.rain-highlight-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rain-highlight-point {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--rain-line);
  border-radius: 16px;
  padding: 14px;
}

.rain-highlight-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rain-accent-strong);
}

.rain-highlight-point span {
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--rain-line);
  border-radius: 20px;
  background: #fff;
}

.rain-shoe-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.rain-shoe-table th,
.rain-shoe-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--rain-line);
  vertical-align: top;
  text-align: left;
  font-size: 0.95rem;
  color: var(--rain-muted);
  font-weight: 650;
}

.rain-shoe-table thead th {
  background: #f3f8ff;
  color: var(--rain-accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.rain-shoe-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.rain-shoe-table tbody tr:last-child td {
  border-bottom: 0;
}

.rain-spec-main {
  display: block;
  font-weight: 800;
  color: var(--rain-text);
}

.rain-spec-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.83rem;
  color: var(--rain-muted);
}

.rain-compare-note {
  color: var(--rain-muted);
  font-size: 0.93rem;
  font-weight: 650;
}

.rain-tips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.rain-notice {
  margin-top: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--rain-line);
  color: var(--rain-muted);
  font-size: 0.93rem;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .rain-hero,
  .rain-two-column,
  .rain-checklist-grid,
  .rain-product-grid,
  .rain-product-grid-two,
  .rain-principle-grid,
  .rain-highlight-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rain-tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .rain-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rain-hero,
  .rain-two-column,
  .rain-checklist-grid,
  .rain-product-grid,
  .rain-product-grid-two,
  .rain-principle-grid,
  .rain-highlight-points,
  .rain-diagram-flow {
    grid-template-columns: 1fr;
  }

  .rain-product-top {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .rain-product-thumb {
    width: 80px;
    height: 80px;
  }

  .rain-panel,
  .rain-theme-section,
  .rain-hero {
    padding: 22px;
  }

  .rain-main {
    padding-top: 20px;
  }
}

@media (max-width: 560px) {
  .rain-container {
    width: min(calc(100% - 20px), var(--rain-max));
  }

  .rain-hero,
  .rain-panel,
  .rain-theme-section {
    padding: 18px;
    border-radius: 22px;
  }

  .rain-button,
  .rain-amazon-link,
  .rain-page-jump a {
    width: 100%;
  }

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

  .rain-product-thumb,
  .rain-product-text-thumb {
    width: 88px;
    height: 88px;
  }

  .rain-shoe-table th,
  .rain-shoe-table td {
    padding: 14px 12px;
  }
}

/* Rainy page alignment with packing guide */
body.rain-page {
  --rain-bg: var(--bg);
  --rain-surface: rgba(255, 255, 255, 0.88);
  --rain-surface-soft: rgba(255, 255, 255, 0.64);
  --rain-line: var(--line);
  --rain-line-strong: rgba(31, 41, 51, 0.14);
  --rain-text: var(--text);
  --rain-muted: var(--muted);
  --rain-accent: var(--blue);
  --rain-accent-soft: rgba(35, 72, 169, 0.08);
  --rain-accent-strong: #1f4aa5;
  --rain-shadow: 0 20px 52px rgba(31, 41, 51, 0.09);
  --rain-shadow-soft: 0 16px 44px rgba(31, 41, 51, 0.07);
  --rain-radius-xl: 24px;
  --rain-radius-lg: 20px;
  --rain-max: var(--max);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 75, 57, 0.14), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(35, 72, 169, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 58%, #eef4f1 100%);
}

.rain-main {
  padding: 0 0 72px;
}

.rain-container {
  width: min(var(--max), calc(100% - 32px));
  gap: 24px;
}

.rain-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 28px;
  padding: 58px 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rain-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  box-shadow: 0 20px 52px rgba(31, 41, 51, 0.09);
}

.rain-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);
}

.rain-kicker,
.rain-tag {
  min-height: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1f4aa5;
  background: rgba(35, 72, 169, 0.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.rain-hero h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  color: #1d4698;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.rain-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
}

.rain-actions {
  gap: 10px;
  margin-top: 24px;
}

.rain-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-weight: 900;
  box-shadow: none;
}

.rain-button-primary {
  color: #fff;
  border-color: rgba(35, 72, 169, 0.34);
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 14px 30px rgba(42, 84, 181, 0.2);
}

.rain-hero-summary li,
.rain-principle-card,
.rain-check-card,
.rain-tip-card,
.rain-product-card,
.rain-sub-card,
.rain-diagram-card,
.rain-compare-note,
.rain-shoe-quote,
.rain-highlight-point {
  border-color: rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.64);
}

.rain-panel,
.rain-theme-section,
.rain-notice {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.rain-panel,
.rain-theme-section {
  padding: 26px;
}

.rain-section-head {
  margin-bottom: 18px;
}

.rain-section-head h2,
.rain-panel h2 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.rain-section-note,
.rain-panel > p,
.rain-product-card p,
.rain-tip-card p,
.rain-sub-card p,
.rain-diagram-card p,
.rain-shoe-quote p,
.rain-highlight-point span {
  color: var(--muted);
}

.rain-page-jump {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 8;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  margin: -4px 0 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.rain-page-jump a {
  flex: 0 0 auto;
  min-height: auto;
  padding: 8px 13px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.rain-page-jump a:hover {
  color: var(--navy);
  background: rgba(35, 72, 169, 0.08);
}

.rain-num {
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  font-size: 12px;
  font-weight: 950;
}

.rain-amazon-link {
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, #232f3e, #37475a);
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.16);
}

.rain-product-card {
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.rain-product-card-featured {
  border-color: rgba(216, 75, 57, 0.24);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 75, 57, 0.12), transparent 28%),
    var(--surface);
}

.rain-product-thumb,
.rain-product-text-thumb {
  border-color: rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.rain-shoe-table thead th {
  color: var(--navy);
  background: rgba(35, 72, 169, 0.08);
}

@media (max-width: 900px) {
  .rain-hero,
  .rain-two-column,
  .rain-checklist-grid,
  .rain-product-grid,
  .rain-product-grid-two,
  .rain-principle-grid,
  .rain-highlight-points,
  .rain-diagram-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .rain-container {
    width: min(100% - 22px, var(--max));
  }

  .rain-hero,
  .rain-panel,
  .rain-theme-section,
  .rain-hero-card,
  .rain-check-card,
  .rain-tip-card,
  .rain-product-card {
    border-radius: 20px;
    padding: 16px;
  }

  .rain-hero {
    padding: 34px 0 4px;
  }
}

/* Sub-line guide */
.subline-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.opening-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.opening-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.opening-hero-image {
  object-position: center;
}

.opening-image-card {
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.opening-image-card .guide-image {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}

.opening-image-card figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.75;
}

.opening-wide-image .guide-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.opening-tall-image {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.opening-tall-image .guide-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.opening-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.opening-two-column h3 {
  color: var(--text);
}

.opening-plan-grid {
  margin-bottom: 22px;
}

.opening-checklist-grid {
  margin-top: 18px;
}

.first-actions-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.first-actions-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.first-actions-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.first-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.first-action-grid article {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.first-action-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  font-size: 12px;
  font-weight: 950;
}

.first-action-grid h3 {
  margin: 12px 0 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.28;
}

.first-action-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.first-actions-placeholder {
  padding: 0;
}

.first-actions-placeholder .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(35, 72, 169, 0.08), rgba(216, 75, 57, 0.08)),
    repeating-linear-gradient(45deg, rgba(31, 41, 51, 0.035) 0 10px, rgba(255, 255, 255, 0.42) 10px 20px);
}

.first-actions-image {
  padding: 0;
}

.first-actions-image .guide-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
}

.first-actions-image-wide .guide-image {
  aspect-ratio: 16 / 9;
}

.first-actions-image-tall {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.first-actions-image-tall .guide-image {
  aspect-ratio: 4 / 3;
}

.first-actions-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.course-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.course-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.course-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.course-table td:first-child {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.course-placeholder {
  padding: 0;
}

.course-placeholder .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.course-image {
  padding: 0;
}

.course-image .guide-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
}

.course-image-wide .guide-image {
  aspect-ratio: 16 / 9;
}

.course-image-tall {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.course-image-tall .guide-image {
  aspect-ratio: 4 / 3;
}

.course-timeline {
  margin-top: 22px !important;
}

.course-tabs {
  margin-top: 22px;
}

.course-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.course-tab-list {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.course-tab-list label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

#course-land:checked ~ .course-tab-list label[for="course-land"],
#course-sea:checked ~ .course-tab-list label[for="course-sea"] {
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 12px 24px rgba(42, 84, 181, 0.18);
}

.course-tab-panels {
  margin-top: 16px;
}

.course-tab-panel {
  display: none;
  padding: 20px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
}

#course-land:checked ~ .course-tab-panels .course-land-panel,
#course-sea:checked ~ .course-tab-panels .course-sea-panel {
  display: block;
}

.course-tab-panel h3 {
  margin-top: 0;
  color: var(--text);
}

.course-adjust-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(35, 72, 169, 0.12);
  border-radius: 18px;
  background: rgba(35, 72, 169, 0.06);
}

.course-adjust-card h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}

.course-adjust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.rain-route-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.rain-route-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.rain-route-table td:first-child {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.rain-route-placeholder {
  padding: 0;
}

.rain-route-placeholder .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.rain-route-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.rain-route-image {
  padding: 0;
}

.rain-route-image .guide-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
}

.rain-route-image-wide .guide-image {
  aspect-ratio: 16 / 9;
}

.rain-route-image-tall {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.rain-route-image-tall .guide-image {
  aspect-ratio: 4 / 3;
}

.rain-route-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#rain-route-land:checked ~ .course-tab-list label[for="rain-route-land"],
#rain-route-sea:checked ~ .course-tab-list label[for="rain-route-sea"] {
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 12px 24px rgba(42, 84, 181, 0.18);
}

#rain-route-land:checked ~ .course-tab-panels .rain-route-land-panel,
#rain-route-sea:checked ~ .course-tab-panels .rain-route-sea-panel {
  display: block;
}

.preday-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.preday-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.preday-table td:first-child {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.preday-placeholder {
  padding: 0;
}

.preday-placeholder .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.preday-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#preday-land:checked ~ .course-tab-list label[for="preday-land"],
#preday-sea:checked ~ .course-tab-list label[for="preday-sea"] {
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 12px 24px rgba(42, 84, 181, 0.18);
}

#preday-land:checked ~ .course-tab-panels .preday-land-panel,
#preday-sea:checked ~ .course-tab-panels .preday-sea-panel {
  display: block;
}

.meal-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.meal-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.meal-table td:first-child {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.meal-placeholder {
  padding: 0;
}

.meal-placeholder .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.meal-target-heading {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.meal-target-table {
  min-width: 860px;
}

.meal-target-table td:nth-child(3) {
  color: #1f4aa5;
  font-weight: 950;
  text-align: center;
}

.meal-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#meal-land:checked ~ .course-tab-list label[for="meal-land"],
#meal-sea:checked ~ .course-tab-list label[for="meal-sea"] {
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--blue));
  box-shadow: 0 12px 24px rgba(42, 84, 181, 0.18);
}

#meal-land:checked ~ .course-tab-panels .meal-land-panel,
#meal-sea:checked ~ .course-tab-panels .meal-sea-panel {
  display: block;
}

@media (max-width: 960px) {
  .first-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .first-action-grid {
    grid-template-columns: 1fr;
  }

  .course-tab-list,
  .course-tab-list label {
    width: 100%;
  }

  .course-tab-list {
    display: flex;
  }
}

.subline-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.subline-summary-grid {
  margin-top: 20px;
}

.subline-inline-image {
  margin-top: 22px;
}

.subline-flow-figure {
  display: grid;
  justify-items: center;
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);
}

.subline-flow-image {
  width: min(100%, 920px);
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}

.subline-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.subline-table td:first-child {
  color: var(--navy);
}

.subline-switch-grid {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .subline-cta-panel {
    grid-template-columns: 1fr;
  }

  .subline-flow-figure {
    padding: 10px;
    border-radius: 20px;
  }

  .subline-flow-image {
    border-radius: 14px;
  }
}

/* Disney Planner how-to page */
.howto-page {
  --howto-blue: var(--blue);
  --howto-navy: var(--navy);
  --howto-red: var(--accent);
  --howto-green: #1f9b7a;
  --howto-orange: #f29d3d;
  --howto-purple: #7561d9;
  --howto-shadow: 0 16px 44px rgba(31, 41, 51, 0.07);
}

.howto-main {
  padding-bottom: 72px;
}

.howto-hero {
  padding-top: 42px;
}

.howto-hero h1 {
  max-width: 760px;
}

.howto-hero-card {
  min-width: 0;
}

.howto-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.howto-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.howto-pill strong {
  color: var(--howto-navy);
}

.howto-alert {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 6px 0 24px;
  padding: 20px;
  border: 1px solid rgba(216, 75, 57, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(216, 75, 57, 0.1), rgba(255, 255, 255, 0.78));
  box-shadow: var(--howto-shadow);
}

.howto-alert-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #d84b39, #eb7954);
  font-weight: 950;
}

.howto-alert strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
}

.howto-alert p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.howto-jump {
  margin-top: 20px;
}

.howto-quick {
  padding: 28px;
}

.howto-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.howto-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.howto-step-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(35, 72, 169, 0.08);
}

.howto-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2b57be, var(--howto-blue));
  font-size: 13px;
  font-weight: 950;
}

.howto-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.howto-step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 14px;
  color: var(--howto-blue);
  font-size: 13px;
  font-weight: 950;
}

.howto-text-link::after {
  content: "→";
  margin-left: 4px;
}

.howto-mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.howto-mini-flow div {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(35, 72, 169, 0.06);
}

.howto-mini-flow b,
.howto-mini-flow span {
  display: block;
}

.howto-mini-flow b {
  color: var(--howto-navy);
  font-size: 14px;
  font-weight: 950;
}

.howto-mini-flow span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.howto-timing-grid,
.howto-scene-grid {
  align-items: stretch;
}

.howto-timing-card,
.howto-scene-card {
  padding: 20px;
}

.howto-timing-card ol,
.howto-scene-card ol {
  margin: 12px 0 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.screenshot-placeholder {
  margin: 0;
}

.howto-detail-stack {
  display: grid;
  gap: 16px;
}

.howto-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 0;
}

.howto-detail-panel h3 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.howto-detail-copy p {
  color: var(--muted);
  font-weight: 700;
}

.howto-note-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(35, 72, 169, 0.08), rgba(255, 255, 255, 0.72));
}

.howto-note-card strong {
  color: var(--howto-navy);
  font-size: 16px;
  font-weight: 950;
}

.howto-note-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-chip-list,
.howto-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.howto-chip-list span,
.howto-quick-buttons span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.howto-quick-buttons span {
  color: var(--howto-blue);
  background: rgba(35, 72, 169, 0.08);
}

.howto-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.howto-status-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.howto-status-grid div,
.howto-compare-box div {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.howto-status-grid b,
.howto-status-grid span,
.howto-compare-box b,
.howto-compare-box span {
  display: block;
}

.howto-status-grid b,
.howto-compare-box b {
  color: var(--text);
  font-weight: 950;
}

.howto-status-grid span,
.howto-compare-box span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.howto-compare-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}

.howto-bullet-list {
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.howto-bullet-list li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-example-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.howto-example-list article {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.howto-example-list h3 {
  margin-top: 0;
}

.howto-example-list ol {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.howto-faq-list details {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.howto-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 950;
}

.howto-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.howto-final-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(35, 72, 169, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0%, rgba(216, 75, 57, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 241, 255, 0.78));
  box-shadow: var(--howto-shadow);
}

.howto-final-panel h2 {
  margin-top: 8px;
}

.howto-final-panel p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 960px) {
  .howto-quick-grid,
  .howto-mini-flow,
  .howto-shot-grid,
  .howto-example-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .howto-detail-panel {
    grid-template-columns: 1fr;
  }

  .howto-final-panel {
    display: block;
  }
}

@media (max-width: 820px) {
  .howto-hero {
    padding-top: 28px;
  }

  .howto-alert {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .howto-quick-grid,
  .howto-mini-flow,
  .howto-shot-grid,
  .howto-example-list,
  .howto-status-grid,
  .howto-status-grid.compact,
  .howto-compare-box {
    grid-template-columns: 1fr;
  }

  .howto-quick,
  .howto-final-panel {
    padding: 20px;
  }
}
