:root {
  --bg-top: #fff8ec;
  --bg-bottom: #e8f1ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text-strong: #16233b;
  --text-soft: #52627f;
  --line: rgba(34, 58, 94, 0.12);
  --accent: #ef8354;
  --accent-deep: #223a5e;
  --accent-mint: #b8e0d2;
  --shadow: 0 26px 60px rgba(34, 58, 94, 0.14);
}

body.theme-dark {
  --bg-top: #0f1728;
  --bg-bottom: #1a2237;
  --surface: rgba(19, 29, 48, 0.86);
  --surface-strong: #1d2942;
  --text-strong: #f3f6ff;
  --text-soft: #b4bfd8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff9d6c;
  --accent-deep: #dfe8ff;
  --accent-mint: #8fcdb7;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 93, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(169, 199, 255, 0.24), transparent 24%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  transition: background 0.25s ease, color 0.25s ease;
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.control-field {
  display: grid;
  gap: 6px;
  min-width: 138px;
}

.control-field span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.control-field select,
.theme-toggle {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text-strong);
}

.theme-toggle {
  cursor: pointer;
  font-weight: 700;
}

.page-shell-narrow {
  width: min(900px, calc(100% - 32px));
}

.topbar-wide {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: end;
}

.time-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  cursor: pointer;
}

.time-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-toggle__box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.time-toggle__box::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), #f4b942);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.time-toggle input:checked + .time-toggle__box::after {
  transform: scale(1);
}

.time-toggle__text {
  display: grid;
  gap: 3px;
}

.time-toggle__text strong,
.time-toggle__text small {
  color: var(--accent-deep);
}

.time-toggle__text small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.mode-panel,
.timer-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--line);
}

.mode-panel__copy {
  display: grid;
  gap: 6px;
}

.mode-panel__copy strong,
.timer-card__row strong {
  color: var(--accent-deep);
}

.mode-panel__copy span,
.timer-card__row span {
  color: var(--text-soft);
}

.mode-panel__button {
  max-width: 220px;
}

.timer-card {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 14px;
  z-index: 12;
  backdrop-filter: blur(14px);
}

.timer-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.timer-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 58, 94, 0.12);
}

.timer-bar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #44b678, #f0a25b);
  transition: width 0.2s linear;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav__link,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 700;
}

.site-nav__link--active {
  background: rgba(240, 138, 93, 0.16);
  color: var(--accent-deep);
}

.hero-card,
.test-card,
.comment-card,
.contact-card {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 40px;
}

.hero-card-compact {
  padding: 32px 40px;
}

.preview-controls {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.preview-type-picker {
  width: min(760px, 100%);
}

.preview-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.preview-type-button {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text-strong);
  font-weight: 700;
  cursor: pointer;
}

.preview-type-button.is-active {
  background: linear-gradient(135deg, var(--accent), #f4b942);
  color: #fff;
  border-color: transparent;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}

.hero-copy h1,
.section-heading h2,
.result h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-copy-centered {
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.96;
}


.section-note,
.mbti-description,
.contact-intro,
.progress-header span,
#commentNoscript {
  color: var(--text-soft);
}

.test-card,
.comment-card,
.contact-card {
  margin-top: 28px;
  padding: 34px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 26px;
}

.section-note {
  max-width: 24rem;
  line-height: 1.6;
  margin: 0;
}

.progress-card {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--line);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.progress-header strong {
  color: var(--accent-deep);
}

.progress-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(34, 58, 94, 0.12);
}

.progress-bar {
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f4b942);
  transition: width 0.24s ease;
}

.questions {
  display: grid;
  gap: 18px;
}

.question {
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.question-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.question-index {
  min-width: 92px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(240, 138, 93, 0.12);
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.question h3 {
  margin: 0;
  flex: 1;
  font-size: 1.08rem;
  line-height: 1.55;
}

.options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.scale-option {
  position: relative;
  display: flex;
  align-items: center;
}

.scale-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scale-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 78px;
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid rgba(34, 58, 94, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.scale-option.is-tiny {
  --option-checked-bg: linear-gradient(180deg, rgba(235, 118, 118, 0.92), rgba(208, 78, 78, 0.96));
  --option-checked-border: rgba(184, 66, 66, 0.8);
  --option-checked-text: #fff7f7;
  --option-checked-shadow: 0 10px 20px rgba(181, 67, 67, 0.18);
}

.scale-option.is-small {
  --option-checked-bg: linear-gradient(180deg, rgba(241, 164, 147, 0.92), rgba(224, 134, 116, 0.96));
  --option-checked-border: rgba(210, 121, 104, 0.72);
  --option-checked-text: #fffaf8;
  --option-checked-shadow: 0 10px 20px rgba(210, 121, 104, 0.16);
}

.scale-option.is-medium {
  --option-checked-bg: linear-gradient(180deg, rgba(246, 217, 180, 0.94), rgba(233, 191, 143, 0.98));
  --option-checked-border: rgba(214, 174, 134, 0.74);
  --option-checked-text: #66461c;
  --option-checked-shadow: 0 10px 20px rgba(214, 174, 134, 0.16);
}

.scale-option.is-large {
  --option-checked-bg: linear-gradient(180deg, rgba(211, 237, 219, 0.94), rgba(176, 217, 188, 0.98));
  --option-checked-border: rgba(145, 196, 162, 0.72);
  --option-checked-text: #244c35;
  --option-checked-shadow: 0 10px 20px rgba(145, 196, 162, 0.16);
}

.scale-option.is-xlarge {
  --option-checked-bg: linear-gradient(180deg, rgba(170, 225, 192, 0.92), rgba(125, 197, 154, 0.98));
  --option-checked-border: rgba(101, 173, 131, 0.74);
  --option-checked-text: #163c27;
  --option-checked-shadow: 0 10px 20px rgba(101, 173, 131, 0.16);
}

.scale-option.is-xxlarge {
  --option-checked-bg: linear-gradient(180deg, rgba(118, 204, 151, 0.92), rgba(72, 167, 110, 0.98));
  --option-checked-border: rgba(66, 145, 100, 0.78);
  --option-checked-text: #f6fff9;
  --option-checked-shadow: 0 10px 20px rgba(66, 145, 100, 0.18);
}

body.theme-dark .scale-option span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #132033;
}

.scale-option span:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 138, 93, 0.32);
  box-shadow: 0 8px 18px rgba(34, 58, 94, 0.08);
}

.scale-option input:checked + span {
  border-color: var(--option-checked-border, rgba(240, 138, 93, 0.66));
  background: var(--option-checked-bg, linear-gradient(180deg, rgba(255, 244, 236, 0.96), rgba(255, 228, 209, 0.96)));
  color: var(--option-checked-text, #223a5e);
  box-shadow: var(--option-checked-shadow, 0 10px 20px rgba(240, 138, 93, 0.16));
}

.pager {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.secondary-button,
.submit-button {
  min-height: 56px;
  padding: 16px 20px;
  border: 0;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.secondary-button {
  min-width: 160px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-strong);
}

.submit-button {
  flex: 1;
  background: linear-gradient(135deg, var(--accent), #f4b942);
  color: #fff;
  box-shadow: 0 16px 28px rgba(240, 138, 93, 0.28);
}

.secondary-button:hover,
.submit-button:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.secondary-button:disabled,
.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.result {
  display: none;
  margin-top: 28px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(233, 243, 255, 0.92));
  border: 1px solid var(--line);
  align-items: flex-start;
  gap: 32px;
}

body.theme-dark .result {
  background: linear-gradient(135deg, rgba(29, 41, 66, 0.96), rgba(31, 53, 84, 0.96));
}

.result.is-visible {
  display: flex;
}

.result-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.result-visual {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .result.is-visible {
    flex-direction: column-reverse;
    align-items: center;
  }
  .result-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.mbti-label {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.mbti-type {
  margin: 8px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--accent-deep);
}

.mbti-description {
  margin: 0;
  line-height: 1.7;
}

.result-visual {
  margin: 12px 0 18px;
}

.result-visual-card {
  overflow: hidden;
  width: min(360px, 100%);
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--line);
}

.result-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.result-gender-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.gender-chip {
  min-width: 92px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text-strong);
  font-weight: 700;
  cursor: pointer;
}

.gender-chip.is-active {
  background: linear-gradient(135deg, var(--accent), #f4b942);
  color: #fff;
  border-color: transparent;
}

.result-stats,
.result-highlights {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.result-stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(34, 58, 94, 0.08);
}

.result-stat__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 700;
}

.result-stat__side--left {
  color: #268a56;
}

.result-stat__side--right {
  color: #356dc9;
}

.result-stat__bar {
  display: flex;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.result-stat__fill {
  height: 100%;
}

.result-stat__fill--left {
  background: linear-gradient(90deg, #3fc17a, #6bd796);
}

.result-stat__fill--right {
  background: linear-gradient(90deg, #70a6ff, #3e72d9);
}

.result-timed-meta {
  margin: 18px 0 0;
  color: var(--accent-deep);
  font-weight: 700;
}

.result-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 22px;
  width: 100%;
  align-self: flex-end;
}

.result-download-button {
  min-width: 180px;
  margin-left: auto;
}

.result-highlights li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-strong);
  font-weight: 600;
}


.comment-shell {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--line);
}

#disqus_thread {
  min-height: 180px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(34, 58, 94, 0.96), rgba(64, 95, 136, 0.88));
  color: #fff;
}

.contact-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-points li {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text-strong);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field textarea:focus,
.control-field select:focus {
  outline: none;
  border-color: rgba(240, 138, 93, 0.72);
  box-shadow: 0 0 0 4px rgba(240, 138, 93, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 980px) {
  .options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .result.is-visible,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .topbar,
  .section-heading,
  .progress-header,
  .question-header,
  .pager,
  .mode-panel,
  .timer-card__row {
    display: grid;
    align-items: start;
  }

  .topbar {
    justify-content: stretch;
  }

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

  .secondary-button {
    min-width: 0;
  }

  .result-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding: 24px 0 56px;
  }

  .hero-card,
  .test-card,
  .comment-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .question,
  .partner-form,
  .contact-copy,
  .comment-shell,
  .progress-card,
  .result-visual-card {
    padding: 18px;
    border-radius: 20px;
  }

  .questions {
    gap: 14px;
  }

  .question-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .question-index {
    min-width: 104px;
    width: 104px;
  }

  .question h3 {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .scale-option span {
    min-height: 56px;
    padding: 10px 8px;
    border-radius: 14px;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .result {
    padding: 22px;
  }
}

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

.info-grid-lower {
  margin-top: 28px;
}

.content-hub-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.content-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.content-link-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.content-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 134, 234, 0.35);
}

.content-link-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  color: var(--accent-deep);
}

.content-link-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.content-link-card__meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ef8354;
}

.content-inline-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.content-inline-links a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: none;
}

.content-inline-links a:hover {
  text-decoration: underline;
}

.info-card,
.content-card {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}

.info-card h2,
.content-card h1,
.content-card h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.info-card p,
.content-card p,
.content-list li,
.page-footer p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.content-card {
  margin-top: 24px;
  padding: 34px;
}

.content-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}


.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--line);
}

.page-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .info-grid,
  .content-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar-wide,
  .topbar-controls,
  .page-footer {
    display: grid;
    align-items: start;
  }

  .topbar-controls {
    justify-content: stretch;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .page-shell-narrow {
    width: min(100% - 20px, 900px);
  }

  .info-card,
  .content-card,
  .page-footer,
  .content-hub-panel {
    padding: 22px;
    border-radius: 22px;
  }
}
