:root {
  color-scheme: light;
  --ink: #22231f;
  --muted: #676a5f;
  --paper: #fbfaf6;
  --linen: #f1ede4;
  --sage: #4f6d5c;
  --sage-soft: #dfe8df;
  --coral: #f0765b;
  --coral-soft: #f7d7ca;
  --plum: #73536d;
  --brand-purple: #854eb9;
  --brand-purple-2: #b06ae6;
  --brand-indigo: #5a81ff;
  --brand-purple-light: #ead0ff;
  --brand-purple-pale: #f2eff4;
  --brand-purple-ink: #6b39a0;
  --brand-soft: #f2eff4;
  --butter: #f2cf70;
  --line: rgba(34, 35, 31, 0.12);
  --shadow: 0 24px 70px rgba(57, 50, 40, 0.14);
  --radius-card: 8px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  word-break: keep-all;
}

body::selection {
  background: var(--butter);
  color: var(--ink);
}

html.momentia-copy-guard body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html.momentia-copy-guard input,
html.momentia-copy-guard textarea,
html.momentia-copy-guard select,
html.momentia-copy-guard [contenteditable="true"],
html.momentia-copy-guard [data-allow-copy] {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 146px;
  height: auto;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(135deg, var(--coral) 0 48%, transparent 49%),
    linear-gradient(315deg, var(--sage) 0 48%, var(--butter) 49%);
  border: 1px solid rgba(34, 35, 31, 0.2);
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 0;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-actions,
.hero-actions,
.store-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button,
.icon-button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button {
  min-height: 48px;
  gap: 8px;
  padding: 0 17px;
  border-radius: 999px;
  white-space: nowrap;
}

.button svg,
.icon-button svg,
.store-button svg,
.item-icon svg,
.care-tab svg,
.dash-note svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(34, 35, 31, 0.2);
}

.button-soft {
  color: var(--ink);
  background: var(--linen);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button:hover,
.icon-button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.icon-button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.section-anchor {
  display: block;
  position: relative;
  top: calc(var(--header-height) * -1);
  visibility: hidden;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  min-height: min(780px, calc(100svh - 52px));
  padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(46px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(223, 232, 223, 0.7), rgba(251, 250, 246, 0) 54%),
    var(--paper);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 16px;
  font-weight: 900;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-description {
  max-width: 590px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.photo-tile {
  position: absolute;
  right: 0;
  top: 12px;
  width: min(72%, 520px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(48%, 282px);
  min-width: 230px;
  padding: 18px;
  border: 10px solid #272824;
  border-radius: 34px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.phone-speaker {
  width: 58px;
  height: 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(34, 35, 31, 0.25);
}

.app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}

.app-top span {
  color: var(--muted);
  font-size: 14px;
}

.app-top strong {
  font-size: 34px;
}

.rhythm-ring {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 22px auto;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 0 32%, var(--butter) 32% 58%, var(--sage) 58% 82%, var(--brand-soft) 82%);
}

.rhythm-ring span {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fffdfa;
  border: 1px solid var(--line);
}

.app-list {
  display: grid;
  gap: 10px;
}

.app-list div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  background: #f6f2ea;
  border-radius: var(--radius-card);
}

.app-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-list strong {
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-coral {
  background: var(--coral);
}

.dot-moss {
  background: var(--sage);
}

.dot-brand {
  background: var(--brand-indigo);
}

.care-kit {
  position: absolute;
  right: 34px;
  bottom: 46px;
  width: min(38%, 230px);
  min-width: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff7df;
  box-shadow: 0 18px 44px rgba(57, 50, 40, 0.13);
}

.care-kit::before {
  content: "";
  display: block;
  width: 100%;
  height: 88px;
  margin-bottom: 18px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(90deg, transparent 42%, rgba(34, 35, 31, 0.08) 42% 45%, transparent 45%),
    linear-gradient(135deg, var(--sage-soft), #fff 65%);
  border: 1px solid rgba(34, 35, 31, 0.08);
}

.kit-label {
  display: block;
  margin-bottom: 7px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.care-kit strong {
  font-size: 18px;
  line-height: 1.34;
}

.standard,
.care,
.numbers,
.shopping,
.download {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.shopping {
  background: linear-gradient(160deg, #fff, #f5f7f3);
}

.shopping-page .shopping-landing {
  min-height: clamp(420px, 60vh, 520px);
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 72px);
  display: grid;
  align-items: center;
  background: linear-gradient(130deg, #f2f5ed 0, #fbfaf6 60%, #fff 100%);
}

.shopping-page .shopping-landing h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 94px);
  line-height: 0.98;
  max-width: 520px;
}

.shopping-page .shopping-landing .shop-intro {
  margin: 20px 0 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.shopping-page .shopping-landing .hero-actions {
  margin-top: 22px;
}

.shopping-landing-content {
  max-width: 860px;
}

.shop-hero {
  padding: clamp(56px, 10vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(130deg, #f4f2ec 0, #fbfaf6 48%, rgba(251, 250, 246, 0.6) 100%);
}

.shop-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.shop-hero-copy {
  max-width: 640px;
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.68;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 70px) clamp(20px, 5vw, 72px) 74px;
}

.shop-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}

.sidebar-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fffdfa;
}

.sidebar-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
}

.sidebar-desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.category-list a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(34, 35, 31, 0.08);
  color: var(--muted);
  font-weight: 900;
}

.category-list a:hover,
.category-list a[aria-current="true"] {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.shop-main {
  display: grid;
  gap: 16px;
}

.shop-toolbar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
}

.shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  white-space: nowrap;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid rgba(34, 35, 31, 0.18);
}

.filter-chip.is-active {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.shop-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.shop-sort select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(34, 35, 31, 0.2);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

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

.shop-card,
.product-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fffdfa;
}

.shop-card > .button,
.shop-card > .button-outline,
.product-card > .button,
.product-card > .button-outline {
  margin-top: auto;
}

.shop-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.shop-card p,
.product-card p {
  margin: 0;
}

.product-card.is-hidden {
  display: none;
}

.shop-badge,
.product-badge {
  justify-self: start;
  margin-top: 2px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 196, 0, 0.14);
  font-size: 12px;
  font-weight: 900;
  color: #8a6b00;
}

.shop-content {
  display: grid;
  gap: 10px;
}

.shop-title {
  margin: 0;
  color: var(--sage);
  font-weight: 900;
}

.shop-content h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
}

.shop-content > p {
  color: var(--muted);
  min-height: 52px;
  line-height: 1.56;
}

.shop-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-top: 4px;
}

.shop-meta strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.shop-meta span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
}

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

.notice-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fffdfa;
}

.notice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.section-heading {
  max-width: 740px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2,
.download h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.standard-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
}

.item-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
}

.standard-item h3 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.22;
}

.standard-item p,
.panel-copy p,
.number-card p,
.download-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.standard-item p {
  margin: 0;
  font-size: 16px;
}

.care {
  background: #eef5f2;
}

.care-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.care-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.care-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  padding: 0 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(34, 35, 31, 0.1);
  border-radius: var(--radius-card);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.care-tab.is-active {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.care-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  min-height: 460px;
  padding: clamp(26px, 5vw, 62px);
  border-radius: var(--radius-card);
  background: #fffdfa;
  border: 1px solid rgba(34, 35, 31, 0.08);
}

.panel-copy h3 {
  max-width: 610px;
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.12;
}

.panel-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
}

.mini-dashboard {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(57, 50, 40, 0.09);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 900;
}

.dash-header strong {
  color: var(--ink);
}

.dash-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  height: 180px;
  margin: 28px 0;
  padding: 18px;
  background: #f2efe8;
  border-radius: var(--radius-card);
}

.dash-bars span {
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, var(--coral), var(--butter));
}

.dash-bars span:nth-child(2n) {
  background: linear-gradient(180deg, var(--sage), #8eb09a);
}

.dash-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: var(--radius-card);
  background: var(--brand-soft);
  color: var(--ink);
  font-weight: 800;
}

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

.number-card {
  min-height: 240px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fffdfa;
}

.number-card strong,
.number-card span {
  display: inline-block;
  color: var(--plum);
  font-size: clamp(54px, 8vw, 98px);
  line-height: 0.95;
  font-weight: 900;
}

.number-card span {
  font-size: clamp(26px, 4vw, 44px);
}

.number-card p {
  margin: 24px 0 0;
  max-width: 310px;
  font-weight: 700;
}

.download {
  background: var(--ink);
  color: #fff;
}

.download-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.download .eyebrow,
.download-copy p {
  color: var(--brand-purple-light);
}

.store-button {
  min-width: 172px;
  min-height: 62px;
  gap: 11px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.store-button svg {
  width: 24px;
  height: 24px;
}

.store-button span {
  display: grid;
  gap: 2px;
  text-align: left;
  font-size: 17px;
  line-height: 1;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #181916;
  color: #fff;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .standard-grid,
  .number-grid,
  .care-layout,
  .care-panel,
  .download-copy,
  .shopping-grid,
  .shop-notice,
  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .standard-item {
    min-height: auto;
  }

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

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

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 11px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    padding: 42px 18px 38px;
    background: var(--paper);
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .photo-tile {
    width: 86%;
  }

  .phone-mockup {
    min-width: 204px;
    width: 58%;
    padding: 14px;
    border-width: 8px;
  }

  .rhythm-ring {
    width: 124px;
    height: 124px;
  }

  .rhythm-ring span {
    width: 86px;
    height: 86px;
  }

  .care-kit {
    right: 0;
    bottom: 26px;
    min-width: 164px;
    padding: 16px;
  }

  .standard,
  .care,
  .numbers,
  .download {
    padding: 70px 18px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .standard-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .care-tab {
    min-height: 54px;
  }

  .shop-filter {
    margin-bottom: 20px;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .shop-sort {
    justify-content: space-between;
  }

  .shop-sort select {
    flex: 1;
  }

  .care-panel {
    padding: 20px;
  }

  .shopping-grid,
  .shop-notice {
    grid-template-columns: 1fr;
  }

  .dash-bars {
    height: 150px;
    gap: 7px;
    padding: 14px;
  }

  .number-card {
    min-height: 204px;
  }

  .store-actions {
    align-items: stretch;
  }

  .store-button {
    flex: 1 1 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 18px;
  }
}

/* Refined Momentia main and company pages */
.moment-home,
.moment-company-page,
.moment-blog-page {
  overflow-x: hidden;
  background: #fff;
  color: #1f1f1e;
  font-family:
    Pretendard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.moment-home .reveal,
.moment-company-page .reveal,
.moment-blog-page .reveal {
  opacity: 1;
  transform: none;
}

.moment-header {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 64px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.moment-header .brand,
.moment-footer .brand {
  color: var(--brand-purple);
  font-weight: 1000;
  letter-spacing: 0;
}

.moment-header .brand-logo {
  width: clamp(112px, 12vw, 146px);
}

.moment-home .brand-mark,
.moment-company-page .brand-mark,
.moment-blog-page .brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 7px solid var(--brand-purple);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
}

.moment-home .brand-mark::after,
.moment-company-page .brand-mark::after,
.moment-blog-page .brand-mark::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-purple);
}

.moment-header .desktop-nav {
  color: #3d3c39;
  font-size: 15px;
  font-weight: 900;
}

.moment-home .moment-header .desktop-nav {
  gap: clamp(38px, 4vw, 52px);
}

.moment-header .button-soft {
  min-height: 40px;
  background: #f8f7f4;
}

.button-brand {
  color: #fff;
  background: var(--brand-purple);
  box-shadow: 0 14px 34px rgba(122, 88, 255, 0.24);
}

.moment-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 86px clamp(20px, 5vw, 72px) clamp(72px, 8vw, 118px);
  background: var(--brand-purple-pale);
}

.moment-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 22%, rgba(255, 255, 255, 0.44) 43%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(110, 72, 183, 0.08));
}

.moment-hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.moment-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.moment-hero-logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--brand-purple);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 0.9;
  font-weight: 1000;
}

.moment-hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.moment-pad-pack {
  position: absolute;
  top: 31%;
  left: clamp(18px, 9vw, 160px);
  z-index: 1;
  display: grid;
  align-content: center;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1.62 / 1;
  padding: clamp(20px, 3vw, 34px);
  color: #fff;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 8%, transparent 8% 92%, rgba(255, 255, 255, 0.84) 92%),
    linear-gradient(135deg, var(--brand-purple-2), var(--brand-purple));
  box-shadow: 0 28px 60px rgba(95, 67, 223, 0.22);
  transform: rotate(-13deg);
}

.moment-pad-pack::before,
.moment-pad-pack::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.moment-pad-pack::before {
  top: 20px;
  right: 22px;
  width: clamp(44px, 6vw, 76px);
  height: clamp(44px, 6vw, 76px);
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.moment-pad-pack::after {
  right: 12%;
  bottom: 18%;
  width: 34%;
  height: 16px;
}

.moment-pad-pack span {
  max-width: 70%;
  font-size: clamp(11px, 1.5vw, 17px);
  font-weight: 800;
}

.moment-pad-pack strong {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
}

.moment-pad-pack small {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: clamp(13px, 2vw, 21px);
  font-weight: 1000;
}

.moment-phone {
  position: absolute;
  right: clamp(18px, 11vw, 180px);
  bottom: 12%;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: clamp(190px, 22vw, 294px);
  min-height: clamp(330px, 38vw, 520px);
  padding: 16px;
  border: 9px solid #26334e;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(38, 51, 78, 0.26);
  transform: rotate(-18deg);
}

.moment-phone::before {
  content: "";
  justify-self: center;
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: #d7dbe3;
}

.moment-phone-top,
.moment-phone-card {
  padding: 13px;
  border-radius: 12px;
  background: #f8f7f4;
}

.moment-phone-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
}

.moment-phone-top span,
.moment-phone-card small {
  color: #77756f;
  font-size: 12px;
}

.moment-phone-top strong {
  color: var(--brand-purple);
}

.moment-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 12px;
}

.moment-calendar span {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #eeeef0;
}

.moment-calendar .is-on {
  background: var(--brand-purple);
}

.moment-calendar .is-soft {
  background: #ffeaa3;
}

.moment-phone-card {
  display: grid;
  gap: 6px;
  align-self: end;
}

.moment-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: start;
  display: grid;
  justify-items: start;
  max-width: 660px;
  margin-top: 0;
  text-align: left;
}

.moment-hero-copy h1 {
  margin: 0 0 18px;
  color: #20211f;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: 0;
}

.moment-hero-copy p {
  margin: 0 0 30px;
  color: rgba(32, 33, 31, 0.78);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  font-weight: 700;
}

.moment-slogan {
  display: grid;
  justify-items: center;
  padding: clamp(110px, 16vw, 190px) 20px;
  text-align: center;
  background: #fff;
}

.moment-overline {
  margin: 0;
  color: #20211f;
  max-width: 100%;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
}

.moment-slogan h2 {
  max-width: 920px;
  margin: 18px 0 0;
  color: #20211f;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.16;
  letter-spacing: 0;
}

.moment-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #77756f;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
}

.moment-standard,
.moment-care,
.moment-impact,
.moment-closing,
.company-values,
.company-founders,
.company-recruit {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.moment-section-title,
.company-section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.moment-section-title p,
.company-section-heading p,
.company-hero-copy p,
.company-recruit-copy p {
  margin: 0 0 14px;
  color: var(--brand-purple);
  font-size: 16px;
  font-weight: 1000;
}

.moment-section-title h2,
.company-section-heading h2,
.company-recruit-copy h2 {
  margin: 0;
  color: #20211f;
  line-height: 1.12;
  letter-spacing: 0;
}

.moment-section-title h2 {
  font-size: clamp(29px, 3.8vw, 48px);
  line-height: 1.18;
}

.company-section-heading h2,
.company-recruit-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
}

.moment-standard-grid,
.moment-service-cards,
.moment-impact-grid,
.company-value-grid,
.company-founder-grid {
  display: grid;
  gap: 16px;
}

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

.moment-standard-card,
.moment-service-card,
.moment-impact-card,
.company-value-card,
.company-founder-card {
  border: 1px solid #efefed;
  border-radius: 8px;
  background: #fff;
}

.moment-standard-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
}

.moment-standard-card svg,
.moment-service-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--brand-purple);
  stroke-width: 2.1;
}

.moment-standard-card h3,
.moment-service-card h3,
.company-value-card h3,
.company-founder-card h3 {
  margin: 0 0 14px;
  color: #20211f;
  letter-spacing: 0;
}

.moment-standard-card h3,
.moment-service-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
}

.company-value-card h3,
.company-founder-card h3 {
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.22;
}

.moment-standard-card p,
.moment-service-card p,
.moment-impact-card p,
.company-value-card p,
.company-founder-card p,
.company-hero-copy span,
.company-recruit-copy span {
  margin: 0;
  color: #62605b;
  font-size: 16px;
  line-height: 1.76;
}

.moment-care {
  overflow: hidden;
  background: #f8f7f4;
}

.moment-care-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  align-items: center;
  gap: clamp(24px, 6vw, 96px);
}

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

.moment-service-card {
  min-height: 282px;
  padding: clamp(22px, 3vw, 34px);
}

.moment-service-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 1000;
}

.moment-care-phone {
  position: relative;
  min-height: 560px;
}

.moment-care-phone .moment-phone {
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%) rotate(7deg);
}

.moment-phone-large {
  width: min(100%, 330px);
}

.moment-wave {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 9px;
  height: 160px;
  padding: 16px;
  border-radius: 12px;
  background: var(--brand-purple-pale);
}

.moment-wave span {
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(var(--brand-purple), var(--brand-indigo));
}

.moment-impact {
  background: #fff;
}

.moment-impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moment-impact-card {
  min-height: 254px;
  padding: clamp(24px, 4vw, 38px);
}

.moment-impact-card strong,
.moment-impact-card span {
  display: inline-block;
  color: var(--brand-purple);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 1000;
}

.moment-impact-card span {
  font-size: clamp(22px, 3vw, 34px);
}

.moment-impact-card p {
  max-width: 300px;
  margin-top: 24px;
  font-weight: 800;
}

.moment-closing {
  min-height: 640px;
  display: grid;
  align-items: end;
  background: var(--brand-purple);
  color: #fff;
}

.moment-closing-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 8vw, 120px);
}

.moment-closing-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(34px, 6vw, 74px);
  line-height: 1;
  font-weight: 1000;
}

.moment-closing-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

.moment-closing-actions {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.moment-closing-actions > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 900;
}

.company-hero {
  display: grid;
  align-items: end;
  min-height: clamp(620px, 92svh, 860px);
  padding: 96px clamp(20px, 5vw, 72px) clamp(72px, 9vw, 128px);
  background: #fff;
}

.company-hero-copy {
  max-width: 980px;
}

.company-hero-copy h1 {
  max-width: 900px;
  margin: 0 0 28px;
  color: #20211f;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.04;
  letter-spacing: 0;
}

.company-hero-copy span {
  display: block;
  max-width: 700px;
  font-size: clamp(18px, 2vw, 23px);
}

.company-values {
  background: #f8f7f4;
}

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

.company-value-card {
  min-height: 270px;
  padding: clamp(24px, 4vw, 42px);
}

.company-value-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 1000;
}

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

.company-founder-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 40px);
}

.company-founder-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 1000;
}

.company-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand-purple);
  color: #fff;
  font-size: 20px;
  font-weight: 1000;
}

.company-recruit {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 96px);
  background: var(--brand-purple-pale);
}

.company-recruit-art {
  position: relative;
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(243, 241, 255, 0.08), rgba(243, 241, 255, 0.08)),
    url("https://static.boldy.app/happymoonday/company/company-recruit.png") center / cover;
}

.company-recruit-art span {
  position: absolute;
  border-radius: 50%;
  background: rgba(122, 88, 255, 0.92);
}

.company-recruit-art span:nth-child(1) {
  width: 74px;
  height: 74px;
  left: 34px;
  top: 42px;
}

.company-recruit-art span:nth-child(2) {
  width: 42px;
  height: 42px;
  right: 48px;
  top: 84px;
  background: #ffe174;
}

.company-recruit-art span:nth-child(3) {
  width: 96px;
  height: 96px;
  right: 72px;
  bottom: 44px;
  background: rgba(255, 255, 255, 0.9);
}

.company-recruit-copy {
  display: grid;
  justify-items: start;
}

.company-recruit-copy span {
  display: block;
  max-width: 560px;
  margin: 22px 0 28px;
  font-size: clamp(18px, 2vw, 22px);
}

.blog-site-header {
  padding-right: clamp(18px, 4vw, 40px);
}

.moment-blog-page .moment-header .desktop-nav {
  gap: clamp(36px, 4vw, 54px);
}

.blog-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1f1f1e;
  cursor: pointer;
}

.blog-icon-button svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.3;
}

.blog-menu-button {
  display: none;
}

.blog-main {
  background: #fff;
  padding-top: 144px;
}

.blog-feature-section,
.blog-section,
.blog-interest-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.blog-feature-section {
  padding-bottom: clamp(92px, 12vw, 150px);
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 56px);
}

.blog-feature-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
  min-width: 0;
}

.blog-feature-copy h1,
.blog-section-heading h2 {
  margin: 0;
  color: #343432;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.blog-feature-copy p {
  max-width: 390px;
  margin: 0;
  color: #696863;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
  font-weight: 750;
}

.blog-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #d9d8d3;
  color: #fff;
}

.blog-arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.blog-section {
  padding-bottom: clamp(92px, 11vw, 140px);
}

.blog-section-heading {
  margin-bottom: 34px;
}

.blog-card-grid,
.blog-topic-list,
.blog-most-list {
  display: grid;
  gap: 28px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.blog-mini-card,
.blog-row-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 22px;
  min-height: 152px;
}

.blog-mini-card > div,
.blog-row-card > div {
  min-width: 0;
}

.blog-mini-card h3,
.blog-row-card h3,
.blog-rank-card h3 {
  margin: 0;
  color: #343432;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 950;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.blog-mini-card p,
.blog-row-card p,
.blog-rank-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 12px 0 0;
  color: #696863;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.blog-thumb {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 8px;
  background: #f8f7f4;
  isolation: isolate;
}

.blog-thumb::before,
.blog-thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.blog-thumb::before {
  width: 78%;
  height: 78%;
  background: rgba(255, 255, 255, 0.48);
  transform: translate(-18%, -8%) rotate(-14deg);
}

.blog-thumb::after {
  right: -12%;
  bottom: -18%;
  width: 54%;
  height: 64%;
  background: rgba(255, 255, 255, 0.36);
}

.blog-thumb svg {
  width: clamp(40px, 5vw, 76px);
  height: clamp(40px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.92);
  stroke-width: 1.8;
}

.blog-thumb.is-storage {
  background:
    linear-gradient(135deg, rgba(229, 230, 255, 0.92), rgba(255, 242, 224, 0.86)),
    var(--brand-purple-light);
}

.blog-thumb.is-hormone {
  background: linear-gradient(135deg, #7361f0, var(--brand-indigo));
}

.blog-thumb.is-pain {
  background: linear-gradient(135deg, #f17468, #f4d57a);
}

.blog-thumb.is-tampon {
  background: linear-gradient(135deg, #91dac7, #f7efe3);
}

.blog-thumb.is-vagina {
  background: linear-gradient(135deg, #f5a8c1, #b596ed);
}

.blog-thumb.is-birthcontrol {
  background: linear-gradient(135deg, #a9cf78, #f4d989);
}

.blog-thumb.is-pms {
  background: linear-gradient(135deg, var(--brand-indigo), #f3c1d2);
}

.blog-thumb.is-cycle {
  background: linear-gradient(135deg, var(--brand-purple), #8a7bf4);
}

.blog-thumb.is-first {
  background: linear-gradient(135deg, #f7c36e, #f59f87);
}

.blog-thumb.is-lab {
  background: linear-gradient(135deg, #4f6d5c, var(--brand-indigo));
}

.blog-thumb.is-health {
  background: linear-gradient(135deg, #8ac99b, #efe3b2);
}

.blog-thumb.is-sex {
  background: linear-gradient(135deg, #73536d, #f1b8a4);
}

.blog-hero-art {
  min-height: min(440px, 34vw);
}

.blog-hero-shelf,
.blog-hero-roll,
.blog-hero-pack {
  position: absolute;
  display: block;
}

.blog-hero-shelf {
  left: 18%;
  bottom: 16%;
  width: 58%;
  height: 18%;
  border: 8px solid rgba(192, 174, 154, 0.36);
  border-top-width: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.blog-hero-roll {
  left: 7%;
  bottom: 36%;
  width: 16%;
  height: 36%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.15)),
    rgba(229, 230, 255, 0.65);
}

.blog-hero-pack {
  width: 28%;
  height: 18%;
  border: 3px solid rgba(190, 170, 152, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.blog-hero-pack::after {
  content: "M";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(115, 97, 240, 0.28);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1;
  font-weight: 1000;
  transform: translate(-50%, -50%);
}

.blog-hero-pack.one {
  left: 34%;
  top: 32%;
  transform: rotate(19deg);
}

.blog-hero-pack.two {
  left: 45%;
  top: 38%;
  transform: rotate(-11deg);
}

.blog-hero-pack.three {
  left: 30%;
  top: 48%;
  transform: rotate(2deg);
}

.blog-interest-section {
  max-width: none;
  padding-inline: 0;
  padding-block: clamp(86px, 11vw, 132px);
  background: #f8f7f4;
}

.blog-interest-section .blog-section-heading,
.blog-rank-strip {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.blog-interest-section .blog-section-heading {
  margin-bottom: 38px;
  text-align: center;
}

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

.blog-rank-card {
  position: relative;
  display: grid;
  gap: 16px;
}

.blog-rank-card > span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 44px;
  line-height: 1;
  font-weight: 1000;
}

.blog-topic-section {
  padding-top: clamp(86px, 11vw, 132px);
}

.blog-topic-section .blog-section-heading,
.blog-most-section .blog-section-heading {
  text-align: center;
}

.blog-topic-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin: 0 auto 42px;
  padding: 2px 0 10px;
  white-space: nowrap;
}

.blog-topic-scroller button {
  min-width: 68px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #908e89;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.blog-topic-scroller button.is-active {
  background: #f8f7f4;
  color: #343432;
}

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

.blog-topic-list li.is-hidden {
  display: none;
}

.blog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.blog-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1f1f1e;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.blog-most-section {
  padding-top: clamp(12px, 2vw, 26px);
}

.blog-empty-state {
  display: grid;
  place-items: center;
  min-height: 280px;
  color: #696863;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 800;
  text-align: center;
}

.blog-loading-shell {
  display: grid;
  place-items: center;
  min-height: min(620px, 70svh);
  padding: 110px 20px 88px;
}

.blog-loading-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #696863;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}

.blog-loading-animation {
  display: grid;
  place-items: center;
  width: clamp(116px, 24vw, 168px);
  aspect-ratio: 1;
}

.blog-loading-animation img {
  width: 70px;
  height: 70px;
}

.blog-loading-animation.is-enhanced img {
  display: none;
}

.blog-loading-animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-loading-state p {
  margin: 0;
}

.hm-page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hm-page-loader[hidden] {
  display: none;
}

.hm-page-loader.is-visible {
  opacity: 1;
}

.hm-page-loader-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #1f1f1e;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 1000;
  text-align: center;
}

.hm-page-loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}

.hm-page-loader-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #e5e6ff;
  border-top-color: var(--brand-purple);
  border-radius: 50%;
  animation: hm-loader-spin 760ms linear infinite;
}

.hm-page-loader-mark img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.hm-page-loader-card p {
  margin: 0;
}

@keyframes hm-loader-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-page-loader-mark::before {
    animation: none;
  }
}

.blog-detail-shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(96px, 11vw, 140px);
}

.blog-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #908e89;
  font-size: 14px;
  font-weight: 850;
}

.blog-detail-breadcrumb a {
  color: #343432;
}

.blog-detail-breadcrumb svg {
  width: 15px;
  height: 15px;
}

.blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  margin-bottom: clamp(58px, 8vw, 96px);
}

.blog-detail-cover {
  min-height: min(470px, 42vw);
}

.blog-detail-cover > svg {
  position: relative;
  z-index: 2;
  width: clamp(86px, 9vw, 134px);
  height: clamp(86px, 9vw, 134px);
}

.blog-detail-tile {
  position: absolute;
  z-index: 1;
  display: block;
  width: 34%;
  height: 18%;
  border: 3px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.blog-detail-tile.one {
  top: 22%;
  left: 17%;
  transform: rotate(-12deg);
}

.blog-detail-tile.two {
  right: 14%;
  bottom: 20%;
  transform: rotate(10deg);
}

.blog-detail-title {
  min-width: 0;
}

.blog-detail-category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f8f7f4;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 950;
}

.blog-detail-title h1 {
  margin: 0;
  color: #2d2d2b;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.blog-detail-title p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #696863;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
  font-weight: 750;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #908e89;
  font-size: 14px;
  font-weight: 850;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
}

.blog-detail-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 50%;
  background: #d9d8d3;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 720px);
  justify-content: center;
  align-items: start;
  gap: clamp(20px, 5vw, 54px);
}

.blog-detail-share {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.blog-like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 54px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid #ecebe8;
  border-radius: 999px;
  background: #fff;
  color: #343432;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.blog-like-button svg {
  width: 20px;
  height: 20px;
}

.blog-like-button.is-active {
  border-color: rgba(255, 112, 153, 0.32);
  color: #ff5e8a;
  background: #fff2f6;
}

.blog-like-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.blog-detail-body {
  color: #343432;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.96;
}

.blog-detail-body p,
.blog-detail-body ul,
.blog-detail-body aside {
  margin: 0 0 28px;
}

.blog-detail-body h2 {
  margin: 58px 0 20px;
  color: #2d2d2b;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 1000;
}

.blog-detail-lead {
  color: #2d2d2b;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.72;
  font-weight: 850;
}

.blog-detail-body ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.blog-detail-body li {
  position: relative;
  padding-left: 24px;
}

.blog-detail-body li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-purple);
}

.blog-detail-body aside {
  padding: 22px 24px;
  border-radius: 8px;
  background: #f8f7f4;
  color: #5f5d58;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 800;
}

.blog-related-section {
  margin-top: clamp(78px, 10vw, 126px);
  padding-top: clamp(58px, 8vw, 90px);
  border-top: 1px solid #efefed;
}

.moment-home .moment-footer,
.moment-policy-page .moment-footer,
.moment-blog-page .moment-footer {
  display: grid;
  gap: 34px;
  padding: clamp(54px, 7vw, 76px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 54px);
  background: #f8f7f4;
  color: #3d3c39;
}

.moment-footer-primary {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(420px, 1.6fr) auto;
  align-items: start;
  gap: clamp(34px, 7vw, 96px);
  width: 100%;
}

.moment-footer-message {
  display: grid;
  gap: 9px;
  align-content: start;
}

.moment-footer-message .brand-logo {
  width: 130px;
  margin-bottom: 8px;
}

.moment-footer-message p,
.moment-footer-message strong {
  margin: 0;
  color: #3d3c39;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.moment-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 72px);
}

.moment-footer-nav div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.moment-footer-nav h2 {
  margin: 0 0 2px;
  color: #20211f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 1000;
}

.moment-footer-nav a {
  color: #4e4c48;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 750;
}

.moment-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
  color: #4e4c48;
}

.moment-footer-social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.moment-footer-social svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.25;
}

.moment-footer-social span {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.moment-footer-legal {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 2.6fr);
  gap: clamp(34px, 7vw, 96px);
  padding-top: 26px;
  border-top: 1px solid rgba(31, 31, 30, 0.12);
}

.moment-footer-legal p {
  margin: 0;
  color: #77756f;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 750;
}

.moment-footer-legal p:first-child {
  white-space: nowrap;
}

.moment-footer-legal span::before {
  content: "|";
  margin: 0 8px;
  color: rgba(119, 117, 111, 0.55);
}

.moment-policy-page {
  min-height: 100vh;
  background: #fff;
  color: #20211f;
  font-family:
    Pretendard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.policy-main {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 860px);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 132px clamp(20px, 5vw, 72px) clamp(78px, 10vw, 128px);
}

.policy-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
}

.policy-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  color: #62605b;
  font-size: 14px;
  font-weight: 800;
}

.policy-sidebar a[aria-current="page"] {
  background: var(--brand-purple-pale);
  color: var(--brand-purple);
}

.policy-document {
  min-width: 0;
}

.policy-kicker,
.policy-updated {
  margin: 0;
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 800;
}

.policy-document h1 {
  margin: 12px 0 12px;
  color: #20211f;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.policy-title-break {
  display: inline;
}

.policy-updated {
  color: #77756f;
  display: none;
}

.policy-version-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 10px;
}

.policy-version-control label {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
  color: #77756f;
  font-size: 14px;
  font-weight: 800;
}

.policy-version-control label::after {
  content: ":";
}

.policy-select-shell {
  position: relative;
  width: min(168px, calc(100vw - 118px));
}

.policy-select-shell::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 7px solid var(--brand-purple-ink);
  content: "";
  pointer-events: none;
  transform: translateY(-35%);
}

.policy-version-control select {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--brand-purple-light);
  border-radius: 8px;
  appearance: none;
  background: var(--brand-purple-pale);
  box-shadow: none;
  color: var(--brand-purple-ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.policy-version-control select:focus {
  border-color: var(--brand-purple);
  outline: 3px solid rgba(122, 88, 255, 0.2);
  outline-offset: 2px;
}

.policy-version-panel[hidden] {
  display: none;
}

.policy-note {
  margin: 22px 0 34px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 88, 255, 0.24);
  border-radius: 8px;
  background: var(--brand-purple-pale);
  color: #4e4c48;
  font-size: 14px;
  line-height: 1.7;
}

.policy-document section {
  padding: 26px 0;
  border-top: 1px solid #efefed;
}

.policy-document h2 {
  margin: 0 0 12px;
  color: #20211f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.32;
  letter-spacing: 0;
}

.policy-document p,
.policy-document li {
  color: #4e4c48;
  font-size: 15px;
  line-height: 1.74;
}

.policy-document p {
  margin: 0;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.policy-document a {
  color: var(--brand-purple);
  font-weight: 900;
}

.policy-footer {
  background: #f8f7f4;
  color: #3d3c39;
}

.policy-footer .brand-logo {
  width: 130px;
}

@media (max-width: 980px) {
  .moment-standard-grid,
  .moment-care-layout,
  .company-value-grid,
  .company-founder-grid,
  .company-recruit,
  .moment-closing-copy {
    grid-template-columns: 1fr;
  }

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

  .moment-footer-primary,
  .moment-footer-legal {
    grid-template-columns: 1fr;
  }

  .moment-footer-primary {
    gap: 34px;
  }

  .moment-footer-social {
    justify-content: start;
  }

  .moment-footer-legal {
    gap: 14px;
  }

  .moment-footer-legal p:first-child {
    white-space: normal;
  }

  .policy-main {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moment-care-phone {
    min-height: 500px;
  }

  .moment-closing-copy {
    align-items: start;
  }

  .blog-feature-card,
  .blog-card-grid,
  .blog-topic-list,
  .blog-most-list {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    gap: 28px;
  }

  .blog-header-actions {
    gap: 4px;
  }

  .blog-header-actions .button-brand {
    display: none;
  }

  .blog-menu-button {
    display: inline-grid;
  }

  .blog-feature-copy h1,
  .blog-section-heading h2,
  .blog-mini-card h3,
  .blog-row-card h3,
  .blog-rank-card h3,
  .blog-feature-copy p,
  .blog-mini-card p,
  .blog-row-card p,
  .blog-rank-card p {
    word-break: break-all;
  }

  .blog-hero-art {
    min-height: 380px;
  }

  .blog-rank-strip {
    grid-template-columns: 1fr;
  }

  .blog-detail-hero,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-share {
    position: static;
    display: flex;
  }

  .blog-detail-cover {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .moment-header {
    min-height: 52px;
    padding: 10px 20px;
  }

  .moment-header .brand {
    font-size: 16px;
  }

  .moment-header .header-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .moment-header .header-actions .button {
    display: inline-flex;
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .moment-header .header-actions .button svg {
    width: 14px;
    height: 14px;
  }

  .blog-header-actions .hospital-auth-nav-button {
    width: 40px;
    min-width: 40px;
    padding: 0;
  }

  .blog-header-actions .hospital-auth-nav-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .moment-home .brand-mark,
  .moment-company-page .brand-mark,
  .moment-blog-page .brand-mark {
    width: 24px;
    height: 24px;
    border-width: 6px;
  }

  .moment-header .brand-logo {
    width: 116px;
  }

  .moment-hero {
    min-height: 720px;
    padding: 64px 20px 58px;
  }

  .moment-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 42%, rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0.96)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  }

  .moment-hero-banner img {
    object-position: 62% top;
  }

  .moment-hero-logo {
    font-size: 22px;
  }

  .moment-pad-pack {
    top: 33%;
    left: 18px;
    width: 260px;
  }

  .moment-phone {
    right: -8px;
    bottom: 13%;
    width: 168px;
    min-height: 300px;
    padding: 12px;
    border-width: 7px;
  }

  .moment-hero-copy {
    align-self: end;
    justify-items: center;
    max-width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .moment-hero-copy h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .moment-hero-copy p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

  .moment-hero-copy .hero-actions {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .moment-hero-copy .button {
    flex: 1 1 auto;
    min-height: 48px;
    padding: 0 13px;
    font-size: 15px;
  }

  .moment-slogan {
    padding: 98px 20px;
  }

  .moment-overline {
    font-size: 32px;
  }

  .moment-slogan h2 {
    max-width: 350px;
    font-size: 28px;
    line-height: 1.22;
  }

  .moment-lead {
    max-width: 340px;
  }

  .moment-standard,
  .moment-care,
  .moment-impact,
  .moment-closing,
  .company-values,
  .company-founders,
  .company-recruit {
    padding: 72px 20px;
  }

  .moment-section-title h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .blog-site-header {
    padding-right: 8px;
  }

  .blog-header-actions {
    gap: 0;
  }

  .blog-header-actions .button-brand {
    display: none;
  }

  .blog-menu-button {
    display: inline-grid;
  }

  .blog-main {
    padding-top: 88px;
  }

  .blog-feature-section,
  .blog-section,
  .blog-interest-section {
    padding-inline: 20px;
  }

  .blog-feature-section {
    padding-bottom: 78px;
  }

  .blog-feature-copy {
    gap: 18px;
  }

  .blog-feature-copy h1,
  .blog-section-heading h2 {
    font-size: 28px;
    word-break: break-all;
  }

  .blog-feature-copy p {
    font-size: 17px;
    word-break: break-all;
  }

  .blog-arrow {
    width: 42px;
    height: 42px;
  }

  .blog-hero-art {
    min-height: 280px;
  }

  .blog-card-grid,
  .blog-topic-list,
  .blog-most-list {
    gap: 24px;
  }

  .blog-mini-card,
  .blog-row-card {
    grid-template-columns: minmax(118px, 38%) minmax(0, 1fr);
    gap: 16px;
    min-height: 112px;
  }

  .blog-mini-card h3,
  .blog-row-card h3,
  .blog-rank-card h3 {
    font-size: 18px;
    word-break: break-all;
  }

  .blog-mini-card p,
  .blog-row-card p,
  .blog-rank-card p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
  }

  .blog-thumb svg {
    width: 42px;
    height: 42px;
  }

  .blog-interest-section {
    padding-block: 76px;
  }

  .blog-interest-section .blog-section-heading,
  .blog-rank-strip {
    padding-inline: 0;
  }

  .blog-rank-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 74vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .blog-topic-section {
    padding-top: 76px;
  }

  .blog-topic-scroller {
    margin-bottom: 30px;
  }

  .blog-detail-shell {
    padding-inline: 20px;
    padding-bottom: 78px;
  }

  .blog-detail-breadcrumb {
    margin-bottom: 22px;
  }

  .blog-detail-hero {
    gap: 28px;
    margin-bottom: 52px;
  }

  .blog-detail-cover {
    min-height: 280px;
  }

  .blog-detail-title h1 {
    font-size: 34px;
    word-break: break-all;
  }

  .blog-detail-title p {
    margin-top: 18px;
    font-size: 17px;
    word-break: break-all;
  }

  .blog-detail-meta {
    margin-top: 22px;
  }

  .blog-detail-meta span + span::before {
    margin-right: 12px;
  }

  .blog-detail-body {
    font-size: 17px;
    line-height: 1.86;
  }

  .blog-detail-lead {
    font-size: 20px;
  }

  .blog-detail-body h2 {
    margin-top: 46px;
    font-size: 25px;
  }

  .moment-standard-card,
  .moment-service-card,
  .moment-impact-card,
  .company-value-card {
    min-height: auto;
  }

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

  .moment-care-phone {
    min-height: 430px;
  }

  .moment-care-phone .moment-phone {
    right: auto;
    width: 232px;
  }

  .moment-closing {
    min-height: 560px;
  }

  .moment-closing-actions {
    justify-items: start;
  }

  .moment-closing-actions .store-actions {
    width: 100%;
  }

  .moment-home .moment-footer,
  .moment-policy-page .moment-footer,
  .moment-blog-page .moment-footer {
    gap: 28px;
    padding: 42px 20px 38px;
  }

  .moment-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .moment-footer-legal span {
    display: block;
  }

  .moment-footer-legal span::before {
    content: none;
  }

  .policy-main {
    display: block;
    padding: 86px 20px 72px;
  }

  .policy-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
  }

  .policy-sidebar a {
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
    text-align: center;
  }

  .policy-document h1 {
    font-size: 28px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .policy-title-break {
    display: block;
  }

  .policy-version-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 16px 0 8px;
  }

  .policy-version-control label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
    color: #77756f;
    font-size: 13px;
    font-weight: 800;
  }

  .policy-version-control label::after {
    content: ":";
  }

  .policy-select-shell {
    width: 148px;
  }

  .policy-select-shell::after {
    right: 14px;
    border-right-width: 5px;
    border-left-width: 5px;
    border-top-width: 6px;
  }

  .policy-version-control select {
    min-height: 40px;
    padding: 0 34px 0 12px;
    border-width: 1px;
    box-shadow: none;
    font-size: 14px;
  }

  .policy-updated {
    display: none;
  }

  .policy-document p,
  .policy-document li {
    font-size: 14px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .company-hero {
    min-height: 680px;
    padding: 86px 20px 72px;
  }

  .company-hero-copy h1 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.12;
  }

  .company-hero-copy span,
  .company-value-card p,
  .company-founder-card p,
  .company-recruit-copy span,
  .moment-standard-card p,
  .moment-service-card p,
  .moment-impact-card p,
  .moment-lead {
    max-width: 350px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .company-section-heading h2,
  .company-recruit-copy h2 {
    max-width: 350px;
    font-size: 32px;
    line-height: 1.15;
  }

  .company-founder-card {
    grid-template-columns: 1fr;
  }

  .company-recruit-art {
    min-height: 280px;
  }
}

.hm-shop-body {
  background: #eeece7;
  color: #1f1f1e;
  font-family:
    Pretendard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.hm-shop-body img {
  width: 100%;
}

.hm-app-shell {
  position: relative;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 74px;
  background: #fff;
  overflow: hidden;
}

.hm-install-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid #f0f0ee;
  background: #fff;
}

.hm-install-copy {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  max-width: calc(100% - 76px);
  min-width: 0;
  gap: 8px;
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 700;
}

.hm-install-copy img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.hm-install-copy span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-install-banner > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 64px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f6f5f2;
  color: #4f4e4a;
  font-size: 13px;
  font-weight: 800;
}

.hm-install-button {
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 32px;
  min-width: 64px;
  min-height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #f6f5f2;
  color: #4f4e4a;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hm-shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  background: #fff;
}

.hm-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-purple);
  font-size: 14px;
  line-height: 0.82;
  font-weight: 1000;
  letter-spacing: 0;
}

.hm-logo img {
  display: block;
  width: 112px;
  height: auto;
}

.hm-logo-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 7px solid var(--brand-purple);
  border-right-color: transparent;
  border-radius: 50%;
}

.hm-logo-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-purple);
}

.hm-header-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hm-header-icons a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #1f1f1e;
}

.hm-header-icons svg,
.hm-bottom-nav svg,
.hm-event svg,
.hm-category-preview svg,
.hm-ranking-item button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.hm-shop-main {
  padding-bottom: 30px;
}

.hm-coupon-bar {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  background: #151514;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hm-main-banner {
  position: relative;
  overflow: hidden;
  background: #d5f5dd;
}

.hm-main-banner img {
  display: block;
  aspect-ratio: 1127 / 545;
  object-fit: cover;
}

.hm-main-banner span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(31, 31, 30, 0.48);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.hm-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  row-gap: 18px;
  padding: 24px 28px 26px;
  border-bottom: 12px solid #f7f7f5;
  background: #fff;
}

.hm-menu-grid a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: #1f1f1e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.hm-menu-grid img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f7f7f5;
  object-fit: cover;
}

.hm-shop-tabs {
  position: sticky;
  top: 56px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 52px;
  border-bottom: 1px solid #efefed;
  background: #fff;
}

.hm-tab {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1px 0 0;
  border: 0;
  background: transparent;
  color: #6a6965;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
}

.hm-tab.is-active {
  color: #1f1f1e;
  font-weight: 1000;
}

.hm-tab.is-active::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 2px;
  background: #1f1f1e;
}

.hm-section {
  padding: 44px 20px 24px;
  background: #fff;
}

.hm-section h1 {
  margin: 0 0 26px;
  color: #1f1f1e;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-tab-panel {
  display: none;
}

.hm-tab-panel.is-active {
  display: block;
}

.hm-ranking-list {
  display: grid;
  gap: 26px;
}

.hm-ranking-item {
  position: relative;
  display: grid;
  grid-template-columns: 24px 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-right: 42px;
}

.hm-ranking-item[data-product-link],
.hm-product-card[data-product-link],
a.hm-product-card {
  cursor: pointer;
}

.hm-ranking-item[data-product-link]:focus-visible,
.hm-product-card[data-product-link]:focus-visible,
a.hm-product-card:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 4px;
  border-radius: 8px;
}

.hm-ranking-item > strong {
  color: #3d3c39;
  font-size: 18px;
  font-weight: 1000;
  text-align: center;
}

.hm-ranking-item > img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: #f8f8f7;
  object-fit: cover;
}

.hm-brand {
  margin: 0 0 4px;
  color: #30302d;
  font-size: 15px;
  font-weight: 1000;
}

.hm-ranking-item h2,
.hm-product-card h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.hm-price {
  margin: 3px 0 0;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-price span {
  color: #ff3d1f;
  font-weight: 1000;
}

.hm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.hm-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 5px;
  border-radius: 4px;
  background: var(--brand-purple-light);
  color: var(--brand-purple-ink);
  font-size: 10px;
  font-weight: 900;
}

.hm-tags span:first-child {
  background: #24184d;
  color: var(--brand-purple);
}

.hm-ranking-item button {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(122, 88, 255, 0.55);
  border-radius: 6px;
  background: #fff;
  color: var(--brand-purple);
  cursor: pointer;
  transform: translateY(-50%);
}

.hm-ranking-item button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.hm-ranking-cart {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--brand-purple);
}

.hm-card-row {
  display: grid;
  grid-auto-columns: 154px;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.hm-card-row::-webkit-scrollbar {
  display: none;
}

.hm-product-card {
  display: block;
  min-width: 0;
}

.hm-product-card img {
  width: 154px;
  height: 154px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f7f7f5;
  object-fit: cover;
}

.hm-product-card .hm-brand {
  margin-bottom: 4px;
  font-size: 13px;
}

.hm-product-card .hm-price {
  margin-top: 6px;
  font-size: 15px;
}

.hm-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #151514;
  color: #fff;
}

.hm-event p,
.hm-event h1 {
  margin: 0;
}

.hm-event p {
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 900;
}

.hm-event h1 {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.35;
}

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

.hm-category-preview a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 62px;
  padding: 12px;
  border: 1px solid #efefed;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 850;
}

.hm-category-preview a:last-child {
  justify-content: space-between;
  grid-column: 1 / -1;
  min-height: 54px;
}

.hm-category-preview img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f7f7f5;
  object-fit: cover;
}

.hm-category-preview svg {
  width: 18px;
  height: 18px;
  color: #aaa9a4;
}

.hm-category-shell {
  background: #fff;
}

.hm-category-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  height: 52px;
  border-bottom: 1px solid #f0f0ee;
  background: rgba(255, 255, 255, 0.97);
}

.hm-category-header a {
  display: grid;
  place-items: center;
  height: 52px;
  color: #1f1f1e;
}

.hm-category-header svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.3;
}

.hm-category-header h1 {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  padding-top: 1px;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 1000;
  text-align: center;
}

.hm-category-page {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: calc(100vh - 114px);
  padding-bottom: 80px;
  background: #fff;
}

.hm-category-rail {
  position: sticky;
  top: 52px;
  align-self: start;
  display: grid;
  align-content: start;
  min-height: calc(100vh - 114px);
  background: #f8f8f6;
}

.hm-category-rail a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #74726d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.hm-category-rail a[aria-current="true"] {
  background: #fff;
  color: #1f1f1e;
}

.hm-category-groups {
  min-width: 0;
  background: #fff;
}

.hm-category-group {
  padding: 24px 20px 26px;
  border-bottom: 1px solid #f0f0ee;
  scroll-margin-top: 64px;
}

.hm-category-group[hidden] {
  display: none;
}

.hm-category-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hm-category-group-title img,
.hm-category-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f7f7f5;
  color: var(--brand-purple);
  object-fit: cover;
  font-size: 12px;
  font-weight: 1000;
}

.hm-category-group-title h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-category-items {
  display: grid;
  gap: 0;
}

.hm-category-items a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #1f1f1e;
  font-size: 16px;
  font-weight: 850;
}

.hm-category-list-shell {
  padding-bottom: 0;
  background: #fff;
}

.hm-category-list-shell .hm-install-banner {
  position: relative;
  padding-right: 96px;
}

.hm-category-list-shell .hm-install-banner > a {
  position: absolute;
  top: 8px;
  right: 20px;
}

.hm-category-list-shell .hm-install-copy {
  max-width: 100%;
}

.hm-category-list-main {
  min-height: calc(100vh - 100px);
  padding-bottom: 44px;
  background: #fff;
}

.hm-category-browser-header {
  grid-template-columns: 48px minmax(0, 1fr) 96px;
  height: 56px;
  border-bottom: 0;
}

.hm-category-browser-header h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding-top: 1px;
}

.hm-category-browser-header h1 svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.hm-category-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 12px;
}

.hm-category-header-actions a {
  width: 32px;
  height: 56px;
}

.hm-category-primary-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 20px 14px;
  border-bottom: 1px solid #f0f0ee;
  background: #fff;
  scrollbar-width: none;
}

.hm-category-primary-row::-webkit-scrollbar,
.hm-category-secondary-row::-webkit-scrollbar {
  display: none;
}

.hm-category-primary-row a {
  display: grid;
  justify-items: center;
  flex: 0 0 auto;
  gap: 8px;
  min-width: 58px;
  color: #4f4e4a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.hm-category-primary-row a > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: #f7f7f5;
  overflow: hidden;
}

.hm-category-primary-row a.is-active {
  color: #1f1f1e;
}

.hm-category-primary-row a.is-active > span {
  border-color: #1f1f1e;
  background: #fff;
}

.hm-category-primary-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-category-primary-row b {
  color: var(--brand-purple);
  font-size: 18px;
  font-weight: 1000;
}

.hm-category-secondary-row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 46px;
  overflow-x: auto;
  padding: 0 20px;
  border-bottom: 1px solid #f0f0ee;
  background: #fff;
  scrollbar-width: none;
}

.hm-category-secondary-row a {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding-top: 1px;
  color: #696863;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.hm-category-secondary-row a.is-active {
  color: #1f1f1e;
  font-weight: 1000;
}

.hm-category-list-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 20px;
  background: #fff;
}

.hm-category-list-hero p,
.hm-category-list-hero h2,
.hm-category-list-hero span {
  margin: 0;
}

.hm-category-list-hero p {
  color: var(--brand-purple-ink);
  font-size: 14px;
  font-weight: 1000;
}

.hm-category-list-hero h2 {
  margin-top: 5px;
  color: #1f1f1e;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 1000;
}

.hm-category-list-hero span {
  display: block;
  margin-top: 8px;
  color: #74726d;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.hm-category-list-hero img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #f7f7f5;
  object-fit: cover;
}

.hm-category-chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 20px;
  border-top: 1px solid #f0f0ee;
  border-bottom: 1px solid #f0f0ee;
  background: #fff;
  scrollbar-width: none;
}

.hm-category-chip-row::-webkit-scrollbar {
  display: none;
}

.hm-category-chip-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f6f5f2;
  color: #5d5b56;
  font-size: 14px;
  font-weight: 900;
}

.hm-category-chip-row a.is-active {
  background: #1f1f1e;
  color: #fff;
}

.hm-category-product-section {
  margin-top: 0;
  padding: 16px 20px 28px;
  background: #fff;
}

.hm-category-sort-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.hm-category-sort-row strong {
  color: #1f1f1e;
  font-size: 16px;
  font-weight: 1000;
}

.hm-category-sort-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #efefed;
  border-radius: 999px;
  background: #fff;
  color: #74726d;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.hm-category-sort-row svg {
  width: 16px;
  height: 16px;
}

.hm-category-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 30px;
}

.hm-empty-state {
  grid-column: 1 / -1;
  padding: 70px 0;
  color: #74726d;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.hm-category-product-item {
  display: block;
  min-width: 0;
  color: #1f1f1e;
}

.hm-category-product-thumb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f7f7f5;
  overflow: hidden;
}

.hm-category-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-category-cart-mark {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--brand-purple);
}

.hm-category-cart-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.hm-category-product-item .hm-brand {
  display: block;
  margin: 0 0 5px;
  color: #1f1f1e;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-category-product-item h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-category-product-item .hm-price {
  display: block;
  margin-top: 5px;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 1000;
}

.hm-category-product-item .hm-price span {
  color: #ff4b1f;
}

.hm-category-product-item .hm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.hm-search-shell {
  min-height: 100vh;
  padding-bottom: 72px;
  background: #fff;
}

.hm-search-install {
  border-bottom: 1px solid #f0f0ee;
}

.hm-search-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 56px;
  padding-right: 20px;
  background: rgba(255, 255, 255, 0.97);
}

.hm-search-header > a {
  display: grid;
  place-items: center;
  height: 56px;
  color: #1f1f1e;
}

.hm-search-header svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.hm-search-form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 28px;
  align-items: center;
  min-height: 42px;
  padding: 0 8px 0 14px;
  border-radius: 8px;
  background: #f7f6f3;
}

.hm-search-form > svg {
  color: #8f8d88;
}

.hm-search-form input {
  min-width: 0;
  height: 42px;
  border: 0;
  background: transparent;
  color: #1f1f1e;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  outline: 0;
}

.hm-search-form input::placeholder {
  color: #b5b3ae;
}

.hm-search-form button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #aaa9a4;
  cursor: pointer;
}

.hm-search-main {
  min-height: calc(100vh - 160px);
  background: #fff;
}

.hm-search-section {
  padding: 28px 20px 12px;
  background: #fff;
}

.hm-search-section[hidden],
.hm-search-result[hidden] {
  display: none;
}

.hm-search-title-row,
.hm-search-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hm-search-section h1,
.hm-search-result-head h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-search-title-row button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #74726d;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.hm-search-recent,
.hm-search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
}

.hm-search-recent p {
  width: 100%;
  margin: 22px 0 4px;
  color: #4f4e4a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 850;
  text-align: center;
}

.hm-search-recent button,
.hm-search-chip-row button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: #f6f5f2;
  color: #34332f;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.hm-search-result {
  padding: 20px 20px 28px;
  background: #fff;
}

.hm-search-result[data-search-has-results="true"] {
  padding-top: 16px;
}

.hm-search-result[data-search-has-results="true"] .hm-search-result-head {
  display: none;
}

.hm-search-result-head {
  margin-bottom: 16px;
}

.hm-search-result-head strong {
  flex: 0 0 auto;
  color: #74726d;
  font-size: 14px;
  font-weight: 850;
}

.hm-search-product-list {
  padding-bottom: 10px;
}

.hm-search-product-card {
  position: relative;
  min-width: 0;
}

.hm-search-product-card .hm-category-product-item {
  padding-bottom: 2px;
}

.hm-search-product-card .hm-category-product-thumb {
  margin-bottom: 12px;
}

.hm-search-cart-button {
  position: absolute;
  top: calc((min(100vw, 600px) - 52px) / 2 - 44px);
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-purple);
  box-shadow: 0 4px 12px rgba(38, 32, 71, 0.12);
  cursor: pointer;
}

.hm-search-cart-button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.hm-search-cart-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.5;
}

.hm-search-no-result {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 58px 18px;
  text-align: center;
}

.hm-search-no-result strong {
  color: #1f1f1e;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-search-no-result span {
  color: #74726d;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.hm-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: 600px;
  height: 62px;
  margin: 0 auto;
  border-top: 1px solid #efefed;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.hm-bottom-nav a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-width: 0;
  color: #908e89;
  font-size: 11px;
  font-weight: 700;
}

.hm-bottom-nav span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-bottom-nav a.is-active {
  color: #1f1f1e;
}

.hm-bottom-nav a:not(.is-active) svg {
  color: #c2c1bc;
}

.hm-product-shell {
  background: #f7f7f5;
}

.hm-product-install {
  min-height: 48px;
}

.hm-product-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 88px;
  align-items: center;
  height: 52px;
  border-bottom: 1px solid #f0f0ee;
  background: rgba(255, 255, 255, 0.97);
}

.hm-product-header > a,
.hm-product-header div a {
  display: grid;
  place-items: center;
  height: 52px;
  color: #1f1f1e;
}

.hm-product-header div {
  display: grid;
  grid-template-columns: repeat(2, 44px);
}

.hm-product-header h1 {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  padding-top: 1px;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 1000;
  text-align: center;
}

.hm-product-header svg,
.hm-product-path svg,
.hm-product-benefits svg,
.hm-quantity-control svg,
.hm-story-grid svg,
.hm-product-sticky svg,
.hm-product-brand-row svg,
.hm-product-review-link svg,
.hm-product-option-preview svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.hm-product-detail {
  padding-bottom: 110px;
  background: #f7f7f5;
}

.hm-product-visual {
  position: relative;
  background: #f4f3ef;
}

.hm-product-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hm-product-visual span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(31, 31, 30, 0.52);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.hm-product-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hm-product-brand-row .hm-product-brand {
  margin: 0;
}

.hm-product-brand-row a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #8f8d88;
}

.hm-product-summary,
.hm-product-benefits,
.hm-product-option-preview,
.hm-product-order,
.hm-product-story,
.hm-product-info,
.hm-product-reviews {
  margin-top: 10px;
  padding: 24px 20px;
  background: #fff;
}

.hm-product-path {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 0 20px;
  background: #fff;
  color: #74726d;
  font-size: 13px;
  font-weight: 800;
}

.hm-product-path svg {
  width: 14px;
  height: 14px;
  color: #b6b4af;
}

.hm-product-brand {
  margin: 0 0 6px;
  color: #3d3c39;
  font-size: 16px;
  font-weight: 1000;
}

.hm-product-summary h2,
.hm-product-order h2,
.hm-product-story h2,
.hm-product-info h2,
.hm-product-reviews h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 1000;
}

.hm-product-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #4f4e4a;
  font-size: 14px;
  font-weight: 850;
}

.hm-product-review-link[hidden] {
  display: none;
}

.hm-product-review-link span {
  color: #1f1f1e;
  font-size: 13px;
  letter-spacing: 0;
}

.hm-product-review-link svg {
  width: 15px;
  height: 15px;
  color: #b6b4af;
}

.hm-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.hm-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 5px;
  background: var(--brand-purple-light);
  color: var(--brand-purple-ink);
  font-size: 12px;
  font-weight: 900;
}

.hm-product-meta span:first-child {
  background: #24184d;
  color: var(--brand-purple);
}

.hm-product-price {
  margin-top: 22px;
}

.hm-product-price del {
  color: #aaa9a4;
  font-size: 15px;
  font-weight: 800;
}

.hm-product-price p {
  margin: 4px 0 0;
  color: #1f1f1e;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 1000;
}

.hm-product-price p span {
  color: #ff3d1f;
}

.hm-product-price strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-purple-ink);
  font-size: 14px;
  font-weight: 1000;
}

.hm-product-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid var(--brand-purple-light);
  border-radius: 8px;
  background: var(--brand-purple-pale);
  color: #1f1f1e;
  font-size: 14px;
  font-weight: 900;
}

.hm-product-coupon strong {
  color: var(--brand-purple-ink);
}

.hm-product-option-preview {
  display: grid;
  gap: 10px;
}

.hm-product-option-preview > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f1f1e;
  font: inherit;
  cursor: pointer;
}

.hm-product-option-preview > button span {
  color: #74726d;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.hm-product-option-preview > button strong {
  min-width: 0;
  overflow: hidden;
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 1000;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-product-option-preview > button svg {
  width: 18px;
  height: 18px;
  color: #b6b4af;
}

.hm-product-option-list {
  display: grid;
  gap: 8px;
}

.hm-product-option-list button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #efefed;
  border-radius: 9px;
  background: #fff;
  color: #1f1f1e;
  font: inherit;
  cursor: pointer;
}

.hm-product-option-list button.is-active {
  border-color: var(--brand-purple);
  background: var(--brand-purple-pale);
}

.hm-product-option-list span,
.hm-product-sheet-options span {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-product-option-list strong,
.hm-product-sheet-options strong {
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 1000;
}

.hm-product-benefits {
  display: grid;
  gap: 10px;
}

.hm-product-benefits a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 64px;
  color: #4f4e4a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.hm-product-benefits svg {
  margin-top: 1px;
  color: var(--brand-purple);
}

.hm-product-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 1000;
}

.hm-option-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 66px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #1f1f1e;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1e;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hm-option-button span {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
}

.hm-option-button strong {
  font-size: 15px;
  font-weight: 1000;
}

.hm-option-button svg {
  width: 20px;
  height: 20px;
  color: var(--brand-purple);
}

.hm-quantity-row,
.hm-product-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 1000;
}

.hm-quantity-control {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  align-items: center;
  overflow: hidden;
  height: 38px;
  border: 1px solid #dfded9;
  border-radius: 8px;
  background: #fff;
}

.hm-quantity-control button {
  display: grid;
  place-items: center;
  height: 38px;
  border: 0;
  background: #fff;
  color: #1f1f1e;
  cursor: pointer;
}

.hm-quantity-control svg {
  width: 16px;
  height: 16px;
}

.hm-quantity-control output {
  color: #1f1f1e;
  font-size: 15px;
  font-weight: 1000;
  text-align: center;
}

.hm-product-total {
  padding-top: 18px;
  border-top: 1px solid #efefed;
}

.hm-product-total strong {
  font-size: 21px;
  font-weight: 1000;
}

.hm-detail-tabs {
  position: sticky;
  top: 52px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 50px;
  margin-top: 10px;
  border-bottom: 1px solid #efefed;
  background: #fff;
}

.hm-detail-tabs a {
  display: grid;
  place-items: center;
  min-width: 0;
  padding-top: 1px;
  color: #3d3c39;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.hm-product-kicker {
  margin: 0 0 10px;
  color: var(--brand-purple-ink);
  font-size: 14px;
  font-weight: 1000;
}

.hm-product-story > p:not(.hm-product-kicker) {
  margin: 14px 0 0;
  color: #5d5b56;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}

.hm-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hm-story-grid article {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 132px;
  padding: 18px 10px;
  border-radius: 8px;
  background: #f7f7f5;
  color: #56544f;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
  text-align: center;
}

.hm-story-grid svg {
  color: var(--brand-purple);
}

.hm-story-grid strong {
  color: #1f1f1e;
  font-size: 14px;
  font-weight: 1000;
}

.hm-product-detail-images {
  display: grid;
  gap: 0;
  margin: 24px -20px -24px;
}

.hm-product-detail-images img {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #f7f7f5;
}

.hm-product-info details {
  border-bottom: 1px solid #efefed;
}

.hm-product-info summary {
  min-height: 56px;
  padding: 18px 0;
  color: #1f1f1e;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-product-info dl {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0 0 20px;
}

.hm-product-info dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
}

.hm-product-info dt,
.hm-product-info dd,
.hm-product-info p {
  margin: 0;
  color: #5d5b56;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.hm-product-info dt {
  color: #908e89;
}

.hm-product-info p {
  padding-bottom: 20px;
}

.hm-review-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #f7f7f5;
  text-align: center;
}

.hm-review-card strong {
  color: #1f1f1e;
  font-size: 16px;
  font-weight: 1000;
}

.hm-review-card p {
  margin: 8px 0 0;
  color: #74726d;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.hm-related-products {
  margin-top: 10px;
}

.hm-product-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 600px;
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid #efefed;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.hm-product-sticky button,
.hm-product-sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-sticky-like {
  background: #f6f5f2;
  color: #1f1f1e;
}

.hm-sticky-cart {
  background: var(--brand-purple-pale);
  color: var(--brand-purple-ink);
}

.hm-sticky-buy {
  background: var(--brand-purple);
  color: #fff;
}

.hm-product-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(31, 31, 30, 0.48);
}

.hm-product-sheet-backdrop[hidden],
.hm-product-sheet[hidden] {
  display: none;
}

.hm-product-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 20px max(20px, env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 0 -18px 36px rgba(31, 31, 30, 0.18);
}

.hm-product-sheet-handle {
  justify-self: center;
  width: 44px;
  height: 5px;
  margin: -10px 0 2px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #dfded9;
  cursor: pointer;
}

.hm-product-sheet h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 1000;
}

.hm-product-sheet-options {
  display: grid;
  gap: 8px;
}

.hm-product-sheet-options:empty {
  display: none;
}

.hm-product-sheet-options button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #efefed;
  border-radius: 10px;
  background: #fff;
  color: #1f1f1e;
  font: inherit;
  cursor: pointer;
}

.hm-product-sheet-options button.is-active {
  border-color: var(--brand-purple);
  background: var(--brand-purple-pale);
}

.hm-product-sheet-selected {
  display: grid;
  gap: 18px;
}

.hm-product-sheet-selected > strong {
  color: #1f1f1e;
  font-size: 19px;
  line-height: 1.32;
  font-weight: 1000;
}

.hm-sheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hm-product-sheet-total {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.hm-product-sheet-total strong {
  color: #1f1f1e;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 1000;
}

.hm-product-sheet-total span {
  color: #8f8d88;
  font-size: 14px;
  font-weight: 900;
}

.hm-product-sheet-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.hm-product-sheet-actions button {
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 17px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-sheet-cart {
  background: #f7f6f3;
  color: #1f1f1e;
}

.hm-sheet-buy {
  background: var(--brand-purple);
  color: #fff;
}

.hm-cart-shell {
  background: #f4f3ef;
}

.hm-cart-install {
  min-height: 48px;
}

.hm-cart-header-spacer {
  display: block;
  width: 48px;
  height: 52px;
}

.hm-cart-main {
  min-height: calc(100vh - 100px);
  padding-bottom: 110px;
  background: #f4f3ef;
}

.hm-cart-coupon {
  justify-content: space-between;
  gap: 14px;
  min-height: 40px;
  font-size: 14px;
}

.hm-cart-coupon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hm-cart-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  background: #151514;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.hm-cart-benefit svg {
  width: 19px;
  height: 19px;
  color: var(--brand-purple);
}

.hm-cart-empty {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 320px;
  padding: 58px 28px 60px;
  background: #fff;
  text-align: center;
}

.hm-cart-empty[hidden],
.hm-cart-content[hidden],
.hm-cart-sticky[hidden],
.hm-cart-recommendations[hidden] {
  display: none;
}

.hm-cart-empty > svg {
  width: 58px;
  height: 58px;
  color: var(--brand-purple);
  stroke-width: 2;
}

.hm-cart-empty h2 {
  margin: 22px 0 0;
  color: #4c4a46;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-cart-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
}

.hm-cart-recommendations {
  padding: 18px 0 34px;
  background: #fff;
}

.hm-cart-recommendations h2 {
  margin: 0;
  padding: 0 20px 16px;
  color: #2c2b28;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 1000;
}

.hm-cart-recommendation-list {
  display: grid;
  grid-auto-columns: 132px;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 0 20px 8px;
  scroll-padding-inline: 20px;
  scrollbar-width: none;
}

.hm-cart-recommendation-list::-webkit-scrollbar {
  display: none;
}

.hm-cart-recommendation-card {
  min-width: 0;
}

.hm-cart-recommendation-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fbfbfa;
}

.hm-cart-recommendation-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hm-cart-recommendation-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--brand-purple);
  border-radius: 4px;
  background: #fff;
  color: var(--brand-purple);
}

.hm-cart-recommendation-thumb svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
}

.hm-cart-recommendation-card .hm-brand {
  margin: 10px 0 2px;
  color: #1f1f1e;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-cart-recommendation-card h3 {
  margin: 0;
  color: #1f1f1e;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.hm-cart-recommendation-card .hm-price {
  margin: 6px 0 0;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-cart-recommendation-card .hm-price span {
  color: #f05a3f;
}

.hm-cart-recommendation-card .hm-tags {
  margin-top: 8px;
}

.hm-cart-content {
  display: block;
}

.hm-cart-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  margin-top: 10px;
  padding: 0 20px;
  background: #fff;
}

.hm-cart-list-head strong {
  color: #1f1f1e;
  font-size: 17px;
  font-weight: 1000;
}

.hm-cart-list-head button {
  border: 0;
  background: transparent;
  color: #908e89;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.hm-cart-list {
  display: grid;
  gap: 0;
  background: #fff;
}

.hm-cart-loading {
  padding: 28px 20px;
  color: #74726d;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.hm-cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid #efefed;
}

.hm-cart-item-image img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #f7f7f5;
  object-fit: cover;
}

.hm-cart-item-body {
  min-width: 0;
}

.hm-cart-item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: start;
}

.hm-cart-item-top h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-cart-item-top button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaa9a4;
  cursor: pointer;
}

.hm-cart-item-top svg {
  width: 18px;
  height: 18px;
}

.hm-cart-option {
  margin: 8px 0 0;
  color: #908e89;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.hm-cart-item-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.hm-cart-quantity-control {
  display: grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  overflow: hidden;
  height: 34px;
  border: 1px solid #dfded9;
  border-radius: 8px;
  background: #fff;
}

.hm-cart-quantity-control button {
  display: grid;
  place-items: center;
  height: 34px;
  border: 0;
  background: #fff;
  color: #1f1f1e;
  cursor: pointer;
}

.hm-cart-quantity-control svg {
  width: 14px;
  height: 14px;
}

.hm-cart-quantity-control output {
  color: #1f1f1e;
  font-size: 14px;
  font-weight: 1000;
  text-align: center;
}

.hm-cart-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #1f1f1e;
}

.hm-cart-price del {
  color: #aaa9a4;
  font-size: 12px;
  font-weight: 800;
}

.hm-cart-price strong {
  font-size: 16px;
  font-weight: 1000;
}

.hm-cart-benefits-panel {
  display: grid;
  gap: 0;
  margin-top: 10px;
  background: #fff;
}

.hm-cart-benefit-row {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 14px 20px;
  border-top: 1px solid #efefed;
  color: #1f1f1e;
}

.hm-cart-benefit-row:first-child {
  border-top: 0;
}

.hm-cart-benefit-row span {
  color: #5d5b56;
  font-size: 15px;
  font-weight: 900;
}

.hm-cart-benefit-row strong {
  min-width: 0;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-cart-benefit-row small {
  grid-column: 2 / 3;
  color: var(--brand-purple);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.hm-cart-benefit-row svg {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  color: #aaa9a4;
}

.hm-cart-summary {
  margin-top: 10px;
  padding: 22px 20px;
  background: #fff;
}

.hm-cart-summary h2 {
  margin: 0 0 18px;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-cart-summary dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.hm-cart-summary dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #5d5b56;
  font-size: 15px;
  font-weight: 800;
}

.hm-cart-summary dt,
.hm-cart-summary dd {
  margin: 0;
}

.hm-cart-summary dd {
  color: #1f1f1e;
  font-weight: 1000;
}

.hm-cart-summary .hm-cart-total-row {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid #efefed;
  color: #1f1f1e;
  font-size: 18px;
  font-weight: 1000;
}

.hm-cart-total-row dd {
  font-size: 22px;
}

.hm-cart-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 8px;
  width: 100%;
  max-width: 600px;
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid #efefed;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.hm-cart-sticky a,
.hm-cart-sticky button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-cart-sticky a {
  background: #f6f5f2;
  color: #1f1f1e;
}

.hm-cart-sticky button {
  background: #1f1f1e;
  color: #fff;
}

.hm-cart-toast {
  position: fixed;
  right: 50%;
  bottom: 86px;
  z-index: 60;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(31, 31, 30, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translate(50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.hm-cart-toast.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

.hm-like-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-like-header h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 1000;
  text-align: center;
}

.hm-like-main {
  min-height: calc(100vh - 110px);
  padding-bottom: 92px;
  background: #fff;
}

.hm-like-auth-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 54px 20px 48px;
  border-bottom: 10px solid #f7f7f5;
  text-align: center;
}

.hm-like-auth-card[hidden] {
  display: none;
}

.hm-like-auth-card svg {
  width: 56px;
  height: 56px;
  color: #ff9aa4;
  fill: currentColor;
  stroke: currentColor;
}

.hm-like-auth-card strong {
  max-width: 210px;
  color: #3d3c39;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 850;
}

.hm-like-auth-card a {
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 38px;
  margin-top: 2px;
  border-radius: 9px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}

.hm-like-section {
  padding: 24px 20px 0;
}

.hm-like-section[hidden] {
  display: none;
}

.hm-like-section + .hm-like-section {
  padding-top: 28px;
}

.hm-like-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.hm-like-section-title h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-like-section-title span {
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 1000;
}

.hm-like-product-list {
  padding-bottom: 20px;
}

.hm-like-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 190px;
  padding: 44px 18px;
  border: 1px solid #efefed;
  border-radius: 14px;
  text-align: center;
}

.hm-like-empty svg {
  width: 42px;
  height: 42px;
  color: #ff9aa4;
  fill: currentColor;
  stroke: currentColor;
}

.hm-like-empty strong {
  color: #1f1f1e;
  font-size: 16px;
  font-weight: 1000;
}

.hm-like-empty span {
  color: #74726d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.hm-sticky-like.is-active {
  background: var(--brand-purple-pale);
  color: var(--brand-purple);
}

.hm-sticky-like.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.hm-me-shell {
  min-height: 100vh;
}

.hm-me-main {
  min-height: calc(100vh - 110px);
  padding-bottom: 80px;
  background: #fff;
}

.hm-me-title {
  padding: 8px 20px 22px;
}

.hm-me-title h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-login-card {
  padding: 0 20px;
}

.hm-login-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: #3d3c39;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 1000;
}

.hm-me-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: inherit;
}

.hm-me-user[hidden] {
  display: none;
}

.hm-me-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 19px;
  font-weight: 1000;
}

.hm-me-user-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hm-me-user-copy strong {
  overflow: hidden;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-me-user-copy span {
  color: #74726d;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-me-user-chevron {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-left: auto;
  color: #c2c1bc;
}

.hm-login-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-login-install {
  min-height: 48px;
}

.hm-login-header button {
  display: grid;
  place-items: center;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f1f1e;
  cursor: pointer;
}

.hm-login-header span {
  display: block;
}

.hm-login-main {
  display: grid;
  align-content: stretch;
  min-height: calc(100vh - 100px);
  padding: clamp(72px, 18vh, 188px) 40px 56px;
  background: #fff;
}

.hm-login-hero {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 250px;
  text-align: center;
}

.hm-login-hero img {
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
}

.hm-login-hero h1 {
  margin: 0;
  color: var(--brand-purple);
  font-size: 44px;
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
}

.hm-login-hero p {
  margin: 13px 0 0;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 1000;
}

.hm-login-actions {
  position: relative;
  align-self: end;
  justify-self: center;
  display: grid;
  gap: 10px;
  width: min(100%, 356px);
}

.hm-login-tip {
  position: relative;
  justify-self: center;
  margin-bottom: 6px;
  padding: 9px 16px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(31, 31, 30, 0.16);
  color: #3d3c39;
  font-size: 13px;
  font-weight: 1000;
}

.hm-login-tip::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 5px 5px 8px rgba(31, 31, 30, 0.08);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.hm-auth-button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid #1f1f1e;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1e;
  font: inherit;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-auth-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.hm-auth-icon {
  display: grid;
  place-items: center;
  justify-self: start;
  width: 30px;
  height: 30px;
}

.hm-auth-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.7;
}

.hm-auth-kakao {
  border-color: #ffdd00;
  background: #ffdd00;
}

.hm-auth-phone {
  border-color: #2f2f2c;
  background: #2f2f2c;
  color: #fff;
}

.hm-auth-google-mark {
  color: #1f1f1e;
  font-size: 21px;
  font-weight: 1000;
}

.hm-phone-panel {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid #efefed;
  border-radius: 14px;
  background: #f7f7f5;
}

.hm-phone-panel[hidden],
.hm-code-row[hidden] {
  display: none;
}

.hm-phone-panel label {
  color: #3d3c39;
  font-size: 13px;
  font-weight: 1000;
}

.hm-phone-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.hm-phone-row input {
  min-width: 0;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #dfded9;
  border-radius: 9px;
  background: #fff;
  color: #1f1f1e;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
}

.hm-phone-row button {
  min-height: 46px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  background: var(--brand-purple);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-code-row {
  display: grid;
  gap: 9px;
}

.hm-recaptcha-box {
  min-height: 1px;
}

.hm-login-status {
  min-height: 20px;
  margin: 3px 0 0;
  color: #74726d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
  text-align: center;
}

.hm-login-status[data-tone="error"] {
  color: #ff3d1f;
}

.hm-login-status[data-tone="success"] {
  color: var(--brand-purple-ink);
}

.hm-login-help {
  justify-self: center;
  margin-top: 20px;
  color: #74726d;
  font-size: 15px;
  font-weight: 900;
}

.hm-guide-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-guide-header {
  grid-template-columns: 48px minmax(0, 1fr) 48px;
}

.hm-guide-main {
  min-height: calc(100vh - 100px);
  padding-bottom: 56px;
  background: #fff;
}

.hm-guide-faq {
  padding: 30px 20px 26px;
}

.hm-guide-faq h2,
.hm-guide-contact h2,
.hm-guide-notice h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-guide-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 18px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.hm-guide-tabs::-webkit-scrollbar {
  display: none;
}

.hm-guide-tabs button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #dfded9;
  border-radius: 9px;
  background: #fff;
  color: #6a6965;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.hm-guide-tabs button.is-active {
  border-color: #1f1f1e;
  background: #1f1f1e;
  color: #fff;
}

.hm-guide-panel {
  display: none;
  margin-top: 22px;
}

.hm-guide-panel.is-active {
  display: grid;
}

.hm-guide-panel details {
  border-bottom: 1px solid #f0f0ee;
}

.hm-guide-panel summary {
  position: relative;
  min-height: 50px;
  padding: 16px 34px 16px 0;
  color: #4c4a46;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.hm-guide-panel summary::-webkit-details-marker {
  display: none;
}

.hm-guide-panel summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa9a4;
  border-bottom: 2px solid #aaa9a4;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.hm-guide-panel details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.hm-guide-panel p {
  margin: 0;
  padding: 0 0 18px;
  color: #74726d;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 750;
}

.hm-guide-contact {
  padding: 36px 20px 34px;
  border-top: 10px solid #f7f7f5;
}

.hm-guide-contact-button {
  display: grid;
  place-items: center;
  min-height: 50px;
  margin-top: 24px;
  border-radius: 10px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
}

.hm-guide-info {
  display: grid;
  gap: 24px;
  margin: 28px 0 0;
}

.hm-guide-info div {
  display: grid;
  gap: 10px;
}

.hm-guide-info dt {
  color: #3d3c39;
  font-size: 16px;
  font-weight: 1000;
}

.hm-guide-info dd {
  margin: 0;
  color: #4f4e4a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 750;
}

.hm-guide-info strong {
  font-weight: 1000;
}

.hm-guide-notice {
  display: grid;
  gap: 0;
  padding: 34px 20px 50px;
  border-top: 10px solid #f7f7f5;
}

.hm-guide-notice h2 {
  margin-bottom: 16px;
}

.hm-guide-notice a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0ee;
  color: #1f1f1e;
}

.hm-guide-notice span,
.hm-guide-notice small {
  grid-column: 1;
}

.hm-guide-notice span {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-guide-notice small {
  margin-top: 4px;
  color: #74726d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.hm-guide-notice svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  color: #c2c1bc;
}

.hm-benefit-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  min-height: 84px;
  border: 1px solid #efefed;
  border-radius: 16px;
}

.hm-benefit-scroll a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-width: 0;
  color: #4f4e4a;
  font-size: 15px;
  font-weight: 800;
}

.hm-benefit-scroll a strong {
  display: block;
  color: var(--brand-purple);
  font-size: 13px;
  line-height: 1;
}

.hm-benefit-scroll a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.hm-benefit-scroll a:nth-child(1) svg {
  color: #ff9aa4;
}

.hm-benefit-scroll a:nth-child(2) svg {
  color: var(--brand-purple);
}

.hm-benefit-scroll a:nth-child(3) svg {
  color: #f5bf22;
}

.hm-me-section {
  padding: 34px 20px 0;
}

.hm-me-section + .hm-me-section {
  padding-top: 48px;
}

.hm-me-section h2 {
  margin: 0 0 18px;
  color: #3d3c39;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-me-list {
  display: grid;
}

.hm-me-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  color: #3d3c39;
  font-size: 16px;
  font-weight: 850;
}

.hm-me-list svg {
  width: 20px;
  height: 20px;
  color: #c2c1bc;
}

.hm-account-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-account-main {
  min-height: 100vh;
  padding-bottom: 48px;
  background: #fff;
}

.hm-account-change-main {
  min-height: 100vh;
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  background: #fff;
}

.hm-account-header {
  min-height: 54px;
}

.hm-account-header a {
  display: grid;
  place-items: center;
  color: #1f1f1e;
}

.hm-account-status {
  margin: 18px 20px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--brand-purple-pale);
  color: var(--brand-purple-ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

.hm-account-status[hidden] {
  display: none;
}

.hm-account-status[data-tone="error"] {
  background: #fff1ee;
  color: #e5452e;
}

.hm-account-status[data-tone="success"] {
  background: var(--brand-purple-pale);
  color: var(--brand-purple-ink);
}

.hm-account-change-hero {
  display: grid;
  gap: 8px;
  padding: 20px 20px 8px;
}

.hm-account-change-hero h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-account-change-hero p {
  margin: 0;
  color: #74726d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.hm-account-change-form {
  display: grid;
  gap: 24px;
  padding: 16px 20px;
}

.hm-change-field {
  display: grid;
  gap: 8px;
}

.hm-change-field[hidden] {
  display: none;
}

.hm-change-field > span:first-child {
  color: #3d3c39;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 1000;
}

.hm-change-input-wrap,
.hm-change-code-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #dfded9;
}

.hm-change-input-wrap:focus-within,
.hm-change-code-wrap:focus-within {
  border-bottom-color: var(--brand-purple);
}

.hm-change-input-wrap input,
.hm-change-code-wrap input {
  min-width: 0;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f1f1e;
  font: inherit;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  outline: 0;
}

.hm-change-input-wrap input::placeholder,
.hm-change-code-wrap input::placeholder {
  color: #c2c1bc;
  font-weight: 850;
}

.hm-change-input-wrap button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f0efeb;
  color: #908e89;
  cursor: pointer;
}

.hm-change-input-wrap button[hidden] {
  display: none;
}

.hm-change-input-wrap svg {
  width: 17px;
  height: 17px;
}

.hm-change-code-wrap button {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: var(--brand-purple-pale);
  color: var(--brand-purple-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-change-field small {
  min-height: 18px;
  color: #908e89;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

.hm-change-field small[data-tone="error"] {
  color: #e5452e;
}

.hm-change-primary {
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-purple);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-change-primary:disabled,
.is-busy .hm-change-primary {
  background: #d5d2ea;
  cursor: wait;
}

.hm-change-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: #74726d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
  text-align: center;
}

.hm-change-status[data-tone="error"] {
  color: #e5452e;
}

.hm-change-status[data-tone="success"] {
  color: var(--brand-purple-ink);
}

.hm-account-section {
  padding: 16px 0;
}

.hm-account-section[hidden],
.hm-account-divider[hidden] {
  display: none;
}

.hm-account-section h1 {
  margin: 0;
  padding: 0 28px 8px;
  color: #3d3c39;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-account-list {
  display: grid;
}

.hm-account-list a,
.hm-account-list button {
  display: grid;
  grid-template-columns: minmax(104px, auto) minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: #272622;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hm-account-list a span,
.hm-account-list button > span:first-child {
  min-width: 0;
  color: #272622;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-account-list strong {
  overflow: hidden;
  color: #74726d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-account-list svg {
  width: 20px;
  height: 20px;
  color: #c2c1bc;
}

.hm-account-divider {
  height: 8px;
  background: #f6f5f2;
}

.hm-account-marketing {
  grid-template-columns: minmax(0, 1fr) 34px;
  min-height: 72px;
}

.hm-account-list button:not(.hm-account-marketing) {
  grid-template-columns: minmax(0, 1fr) 20px;
}

.hm-account-marketing > span:first-child {
  display: grid;
  gap: 4px;
}

.hm-account-marketing small {
  color: #908e89;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}

.hm-account-check {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 32px;
  height: 32px;
  border: 1.5px solid #dfded9;
  border-radius: 8px;
  background: #fff;
  color: #dfded9;
}

.hm-account-check.is-checked {
  border-color: var(--brand-purple);
  background: var(--brand-purple);
  color: #fff;
}

.hm-account-check svg {
  width: 20px;
  height: 20px;
  color: currentColor;
  stroke-width: 3;
}

.hm-account-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 31, 30, 0.36);
}

.hm-account-modal[hidden] {
  display: none;
}

.hm-account-dialog {
  display: grid;
  gap: 22px;
  width: min(100%, 320px);
  padding: 28px 22px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 31, 30, 0.18);
  text-align: center;
}

.hm-account-dialog p {
  margin: 0;
  color: #272622;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 950;
  white-space: pre-line;
}

.hm-account-dialog div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hm-account-dialog-actions.is-single {
  grid-template-columns: 1fr;
}

.hm-account-dialog button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: #f6f5f2;
  color: #3d3c39;
  font: inherit;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
}

.hm-account-dialog button:last-child {
  background: var(--brand-purple);
  color: #fff;
}

.hm-coupon-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-coupon-main {
  min-height: calc(100vh - 72px);
  padding-bottom: 92px;
}

.hm-my-coupon-main {
  background: #fff;
}

.hm-coupon-header a {
  display: grid;
  place-items: center;
  color: #1f1f1e;
}

.hm-coupon-header h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 1000;
  text-align: center;
}

.hm-coupon-hero {
  margin: 6px 20px 22px;
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #926bff, #8397ff);
  color: #fff;
}

.hm-coupon-hero p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 1000;
  opacity: 0.86;
}

.hm-coupon-hero h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 1000;
}

.hm-coupon-hero span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
  opacity: 0.9;
}

.hm-my-coupon-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  margin: 18px 20px 8px;
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--brand-purple-pale);
  color: #1f1f1e;
}

.hm-my-coupon-summary p,
.hm-my-coupon-summary h2,
.hm-my-coupon-summary strong,
.hm-my-coupon-summary span {
  margin: 0;
}

.hm-my-coupon-summary p {
  grid-column: 1 / -1;
  color: var(--brand-purple);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-my-coupon-summary h2 {
  align-self: end;
  color: #1f1f1e;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 1000;
}

.hm-my-coupon-summary strong {
  align-self: end;
  color: var(--brand-purple);
  font-size: 30px;
  line-height: 1;
  font-weight: 1000;
}

.hm-my-coupon-summary span {
  grid-column: 1 / -1;
  color: #6f6b87;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.hm-coupon-section {
  padding: 18px 20px 0;
}

.hm-coupon-section + .hm-coupon-section {
  padding-top: 34px;
}

.hm-coupon-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hm-coupon-section-title h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-coupon-section-title span,
.hm-coupon-section-title a {
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 1000;
}

.hm-coupon-list {
  display: grid;
  gap: 10px;
}

.hm-coupon-login-state {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 38px 18px;
  border: 1px solid #efefed;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.hm-coupon-login-state strong {
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-coupon-login-state p {
  max-width: 240px;
  margin: 0;
  color: #74726d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.hm-coupon-login-state a {
  display: inline-grid;
  place-items: center;
  min-width: 110px;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
}

.hm-coupon-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  min-height: 112px;
  border: 1px solid #ebe9f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(42, 37, 68, 0.06);
}

.hm-coupon-stamp {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 0 8px;
  background: #e5e6ff;
  color: var(--brand-purple);
  text-align: center;
}

.hm-coupon-stamp strong {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.hm-coupon-stamp span {
  font-size: 12px;
  font-weight: 1000;
}

.hm-coupon-copy {
  min-width: 0;
  padding: 15px 12px;
}

.hm-coupon-copy h3 {
  margin: 0;
  overflow: hidden;
  color: #1f1f1e;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-coupon-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 9px;
  color: #66635e;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hm-coupon-copy small {
  display: block;
  overflow: hidden;
  color: #8a8780;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-coupon-action {
  display: grid;
  place-items: center;
  padding: 12px 12px 12px 0;
}

.hm-coupon-action button,
.hm-coupon-state {
  display: inline-grid;
  place-items: center;
  min-width: 76px;
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  background: var(--brand-purple);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 1000;
}

.hm-coupon-action button:disabled {
  background: #d7d4ee;
  color: #6f6b87;
}

.hm-coupon-state {
  background: #f3f2ff;
  color: var(--brand-purple);
}

.hm-point-shell {
  min-height: 100vh;
  background: #fff;
}

.hm-point-main {
  min-height: calc(100vh - 72px);
  padding-bottom: 92px;
  background: #fff;
}

.hm-point-header a {
  display: grid;
  place-items: center;
  color: #1f1f1e;
}

.hm-point-header h1 {
  margin: 0;
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 1000;
  text-align: center;
}

.hm-point-summary {
  display: grid;
  gap: 7px;
  margin: 18px 20px 14px;
  padding: 26px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7a58ff, #8397ff);
  color: #fff;
}

.hm-point-summary p,
.hm-point-summary h2,
.hm-point-summary strong,
.hm-point-summary span {
  margin: 0;
}

.hm-point-summary p {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 1000;
  opacity: 0.86;
}

.hm-point-summary h2 {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.hm-point-summary strong {
  margin-top: 4px;
  font-size: 36px;
  line-height: 1;
  font-weight: 1000;
}

.hm-point-summary span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.hm-point-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 6px;
}

.hm-point-card-grid article {
  display: grid;
  gap: 5px;
  min-height: 114px;
  padding: 16px 14px;
  border: 1px solid #efefed;
  border-radius: 14px;
  background: #fff;
}

.hm-point-card-grid span {
  color: #74726d;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.hm-point-card-grid strong {
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 1000;
}

.hm-point-card-grid small {
  color: #8a8780;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.hm-point-section {
  padding: 24px 20px 0;
}

.hm-point-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hm-point-section-title h2,
.hm-point-guide h2 {
  margin: 0;
  color: #1f1f1e;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-point-section-title span {
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 1000;
}

.hm-point-list {
  display: grid;
  gap: 10px;
}

.hm-point-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 15px 0;
  border-bottom: 1px solid #efefed;
}

.hm-point-history-item div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hm-point-history-item span {
  color: var(--brand-purple);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-point-history-item strong {
  overflow: hidden;
  color: #1f1f1e;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-point-history-item small {
  color: #8a8780;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.hm-point-history-item p {
  margin: 0;
  flex: 0 0 auto;
  color: #1f1f1e;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm-point-history-item p.is-plus {
  color: var(--brand-purple);
}

.hm-point-history-item p.is-minus {
  color: #74726d;
}

.hm-point-login-state,
.hm-point-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 18px;
  border: 1px solid #efefed;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.hm-point-login-state svg,
.hm-point-empty svg {
  width: 40px;
  height: 40px;
  color: var(--brand-purple);
}

.hm-point-login-state strong,
.hm-point-empty strong {
  color: #1f1f1e;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 1000;
}

.hm-point-login-state p,
.hm-point-empty span {
  max-width: 250px;
  margin: 0;
  color: #74726d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.hm-point-login-state a {
  display: inline-grid;
  place-items: center;
  min-width: 110px;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
}

.hm-point-guide {
  padding-top: 128px;
}

.hm-point-guide ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7f7f5;
  color: #66635e;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.hm-point-guide li {
  margin-left: 16px;
}

@media (max-width: 560px) {
  .hm-install-banner {
    padding: 0 20px;
  }

  .hm-coupon-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .hm-coupon-action {
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 0 12px 12px;
  }

  .hm-coupon-action button,
  .hm-coupon-state {
    width: 100%;
  }

  .hm-app-shell:not(.hm-category-list-shell) .hm-install-banner > a {
    display: none;
  }

  .hm-header-icons a:last-child {
    display: none;
  }

  .hm-menu-grid {
    grid-template-columns: repeat(6, 70px);
    overflow-x: auto;
    justify-content: start;
    padding-right: 20px;
    padding-left: 20px;
    scrollbar-width: none;
  }

  .hm-menu-grid::-webkit-scrollbar {
    display: none;
  }

  .hm-ranking-item {
    grid-template-columns: 20px 66px minmax(0, 1fr);
    padding-right: 38px;
  }

  .hm-ranking-item > img {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 380px) {
  .hm-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hm-ranking-item {
    gap: 9px;
  }

  .hm-ranking-item h2 {
    font-size: 14px;
  }
}

/* Hospital finder */
.hospital-page {
  --hospital-ink: #120f16;
  --hospital-muted: #6f6874;
  --hospital-line: rgba(215, 208, 222, 0.82);
  --hospital-green: #854eb9;
  --hospital-mint: #f2eff4;
  --hospital-gold: #a9a5ea;
  --hospital-coral: #f56570;
  --hospital-blue: #5a81ff;
  --hospital-bg: #f2eff4;
  background: #f8f7fa;
  color: var(--hospital-ink);
  font-family:
    Pretendard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hospital-header {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.9);
}

.hospital-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.hospital-brand .brand-logo {
  width: 140px;
}

.hospital-brand span {
  color: var(--hospital-green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: 0;
}

.hospital-page .button-primary {
  color: #fff;
  background: linear-gradient(135deg, #854dba, #b06ae6);
  box-shadow: 0 14px 34px rgba(133, 78, 185, 0.18);
}

.hospital-page .button-soft {
  color: #6b39a0;
  border: 1px solid #d7d0de;
  background: var(--hospital-mint);
}

.hospital-auth-nav-button {
  min-height: 40px;
  color: var(--hospital-ink, var(--ink));
  border: 1px solid #e6dff0;
  background: rgba(255, 255, 255, 0.88);
}

.hospital-auth-nav-button:hover {
  color: #6b39a0;
  border-color: #d7d0de;
  background: #f8f5fb;
}

.hospital-auth-nav-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.hospital-auth-nav-button svg {
  width: 16px;
  height: 16px;
}

.hospital-auth-nav-button.is-loading svg {
  animation: hospital-auth-spin 900ms linear infinite;
}

@keyframes hospital-auth-spin {
  to {
    transform: rotate(360deg);
  }
}

.hospital-page .button-outline {
  color: var(--hospital-ink);
  border-color: #d7d0de;
}

.hospital-main {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.hospital-page [hidden] {
  display: none !important;
}

.hospital-search-band,
.hospital-map-panel,
.hospital-result-panel,
.hospital-side-panel,
.hospital-detail-card,
.hospital-info-grid > article,
.hospital-theme-strip,
.hospital-seo-intro,
.hospital-seo-section,
.hospital-faq {
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 15, 22, 0.06);
}

.hospital-search-band {
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f8f5fb 62%, #f2eff4 100%);
  color: var(--hospital-ink);
}

.hospital-search-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(560px, 1.28fr);
  gap: 22px;
  min-height: 270px;
  padding: clamp(18px, 3vw, 32px);
  align-items: center;
}

.hospital-search-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.hospital-kicker {
  margin: 0;
  color: var(--hospital-green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.hospital-search-copy h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.16;
  font-weight: 1000;
}

.hospital-search-copy p:not(.hospital-kicker) {
  max-width: 470px;
  margin: 0;
  color: var(--hospital-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.hospital-search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(122px, 0.75fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(215, 208, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--hospital-ink);
  box-shadow: 0 14px 36px rgba(18, 15, 22, 0.08);
}

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

.hospital-field-wide {
  grid-column: auto;
}

.hospital-time-filter {
  grid-column: 1 / span 2;
}

.hospital-search-actions {
  grid-column: 3 / span 2;
}

.hospital-field span,
.hospital-time-filter legend {
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.hospital-field input,
.hospital-field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
  color: var(--hospital-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.hospital-field input {
  padding: 0 14px;
}

.hospital-field select {
  padding: 0 36px 0 12px;
}

.hospital-field input:focus,
.hospital-field select:focus {
  border-color: var(--hospital-green);
  box-shadow: 0 0 0 4px rgba(133, 78, 185, 0.12);
}

.hospital-time-filter {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hospital-time-filter legend {
  width: 100%;
  margin-bottom: 5px;
}

.hospital-time-filter label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  cursor: pointer;
}

.hospital-time-filter input {
  position: absolute;
  opacity: 0;
}

.hospital-time-filter span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--hospital-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hospital-muted);
  font-size: 13px;
  font-weight: 400;
}

.hospital-time-filter input:checked + span {
  border-color: rgba(133, 78, 185, 0.28);
  background: #ead0ff;
  color: var(--hospital-green);
}

.hospital-search-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  align-self: end;
  justify-content: flex-end;
  padding-top: 0;
}

.hospital-search-actions .button {
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
}

.hospital-search-actions .button-outline {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.hospital-search-actions .button-primary {
  background: linear-gradient(135deg, #854dba, #b06ae6);
}

.hospital-quick-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.hospital-quick-links::-webkit-scrollbar {
  display: none;
}

.hospital-quick-links.is-dragging,
.hospital-seo-keyword-row.is-dragging {
  cursor: grabbing;
}

.hospital-theme-strip {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.hospital-theme-strip p {
  margin: 0 0 4px;
  color: var(--hospital-purple);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.hospital-theme-strip h2 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-sponsored-panel {
  padding: 18px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 15, 22, 0.06);
}

.hospital-result-panel .hospital-sponsored-panel {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hospital-result-panel .hospital-sponsored-panel .hospital-section-heading {
  margin-bottom: 10px;
}

.hospital-result-panel .hospital-sponsored-panel:not([hidden]) + .hospital-ranking-list,
.hospital-result-panel .hospital-sponsored-panel:not([hidden]) + .hospital-recent-search-list {
  border-top: 0;
}

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

.hospital-result-panel .hospital-sponsored-list {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 0;
  border-top: 1px solid var(--hospital-line);
}

.hospital-sponsored-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  min-height: 98px;
  padding: 12px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f2eff4 100%);
  color: var(--hospital-ink);
  align-items: center;
}

.hospital-result-panel .hospital-sponsored-card {
  grid-template-columns: 64px minmax(0, 1fr) 140px;
  gap: 16px;
  min-height: 132px;
  padding: 18px 14px;
  border: 0;
  border-bottom: 1px solid var(--hospital-line);
  border-radius: 0;
  background: #fefcff;
}

.hospital-sponsored-card:hover {
  border-color: rgba(133, 78, 185, 0.36);
  color: var(--hospital-green);
}

.hospital-sponsored-card img,
.hospital-sponsored-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #ead0ff;
  object-fit: cover;
}

.hospital-result-panel .hospital-sponsored-card img,
.hospital-result-panel .hospital-sponsored-icon {
  width: 56px;
  height: 56px;
  align-self: center;
  border-radius: 10px;
  background: #ead0ff;
}

.hospital-sponsored-icon svg {
  width: 24px;
  height: 24px;
  color: var(--hospital-green);
}

.hospital-sponsored-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.hospital-sponsored-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hospital-sponsored-topline span {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(242, 239, 244, 0.92);
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.hospital-sponsored-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.hospital-sponsored-title strong {
  overflow: hidden;
  min-width: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hospital-result-panel .hospital-sponsored-title strong {
  font-size: 20px;
}

.hospital-sponsored-title small {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid rgba(133, 78, 185, 0.24);
  border-radius: 999px;
  background: #f2eff4;
  color: var(--hospital-blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
}

.hospital-sponsored-address {
  display: -webkit-box;
  overflow: hidden;
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 400;
  text-overflow: clip;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hospital-result-panel .hospital-sponsored-address {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.hospital-sponsored-tags {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.hospital-sponsored-status {
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
}

.hospital-sponsored-side {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 0;
  text-align: right;
}

.hospital-result-panel .hospital-sponsored-side {
  align-self: start;
  padding-top: 2px;
}

.hospital-sponsored-side b {
  display: inline-grid;
  place-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(133, 78, 185, 0.2);
  border-radius: 999px;
  background: #f2eff4;
  color: var(--hospital-muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
}

.hospital-sponsored-side .hospital-sponsored-status {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(245, 101, 112, 0.26);
  border-radius: 999px;
  background: rgba(245, 101, 112, 0.12);
  color: #b13c49;
  white-space: nowrap;
}

.hospital-sponsored-status.is-open {
  color: var(--hospital-green);
}

.hospital-sponsored-status.is-closed {
  color: var(--hospital-blue);
}

.hospital-sponsored-status.is-unknown {
  color: var(--hospital-muted);
}

.hospital-sponsored-side .hospital-sponsored-status.is-open {
  border-color: rgba(104, 199, 111, 0.32);
  background: rgba(104, 199, 111, 0.14);
  color: #2b7b34;
}

.hospital-sponsored-side .hospital-sponsored-status.is-unknown {
  border-color: #d7d0de;
  background: #f2eff4;
  color: var(--hospital-muted);
}

.hospital-quick-links a,
.hospital-tag-list a,
.hospital-result-tags a,
.hospital-sponsored-tags span,
.hospital-directory-columns a,
.hospital-link-list a {
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.hospital-quick-links a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--hospital-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--hospital-muted);
  font-size: 14px;
  font-weight: 400;
}

.hospital-quick-links a:hover,
.hospital-tag-list a:hover,
.hospital-result-tags a:hover,
.hospital-seo-keyword-row a:hover,
.hospital-directory-columns a:hover,
.hospital-link-list a:hover {
  border-color: rgba(133, 78, 185, 0.36);
  color: var(--hospital-green);
  background: #fff;
}

.hospital-dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: start;
}

.hospital-side-panel,
.hospital-map-panel,
.hospital-result-panel,
.hospital-detail-card,
.hospital-info-grid > article,
.hospital-seo-intro,
.hospital-seo-section,
.hospital-faq {
  padding: 20px;
}

.hospital-side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.hospital-ad-rail {
  position: sticky;
  top: 96px;
  overflow: hidden;
  width: 100%;
  min-height: 600px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 15, 22, 0.06);
}

.hospital-ad-unit {
  display: block;
  width: 100%;
  min-height: 600px;
}

.hospital-section-heading h2,
.hospital-faq h2 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 1000;
}

.hospital-side-panel h2 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hospital-side-subtitle {
  margin: 8px 0 -2px;
  color: var(--hospital-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-disease-tag-list a {
  background: #fcf8ff;
}

.hospital-seo-intro {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 255, 0.96)),
    #fff;
}

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

.hospital-seo-intro-grid {
  display: none !important;
}

.hospital-seo-intro-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(215, 208, 222, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.hospital-seo-intro-grid h3 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-seo-intro-grid p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.hospital-detail-seo-guide {
  display: none !important;
}

.hospital-detail-seo-guide > p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.hospital-seo-keyword-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.hospital-seo-keyword-row::-webkit-scrollbar {
  display: none;
}

.hospital-seo-keyword-row a {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #d7d0de;
  border-radius: 999px;
  background: #fff;
  color: #6b39a0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.hospital-quick-links a,
.hospital-seo-keyword-row a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
}

.hospital-tag-list a,
.hospital-result-tags a,
.hospital-sponsored-tags span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d7d0de;
  border-radius: 999px;
  background: #fff;
  color: #6b39a0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.hospital-mini-map {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  min-height: 132px;
}

.hospital-map-grid span {
  border-radius: 6px;
  background: #f2eff4;
}

.hospital-map-grid .is-road {
  background: var(--hospital-gold);
}

.hospital-mini-map b {
  color: var(--hospital-ink);
  font-size: 16px;
  font-weight: 1000;
}

.hospital-mini-map p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

.hospital-nearby-button {
  width: 100%;
  min-height: 38px;
}

.hospital-nearby-button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.hospital-nearby-button svg {
  width: 16px;
  height: 16px;
}

.hospital-mini-map small {
  min-height: 16px;
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.hospital-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 14px;
  min-height: 360px;
}

.hospital-map-layout > .hospital-empty {
  grid-column: 1 / -1;
  min-height: 360px;
}

.hospital-map-frame,
.hospital-detail-map {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #f2eff4;
}

.hospital-map-frame iframe,
.hospital-detail-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.hospital-map-frame .hospital-naver-map,
.hospital-detail-map .hospital-naver-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.hospital-map-marker {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #854dba, #5a81ff);
  box-shadow: 0 10px 24px rgba(18, 15, 22, 0.18);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 1000;
}

.hospital-map-message {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 360px;
  padding: 24px;
  color: var(--hospital-muted);
  text-align: center;
}

.hospital-map-message strong {
  color: var(--hospital-ink);
  font-size: 16px;
  font-weight: 1000;
}

.hospital-map-message p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.hospital-map-message a,
.hospital-map-caption a {
  color: var(--hospital-green);
  font-weight: 1000;
}

.hospital-map-infowindow {
  display: grid;
  gap: 5px;
  min-width: 190px;
  max-width: 260px;
  padding: 12px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 15, 22, 0.12);
}

.hospital-map-infowindow strong {
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-map-infowindow span {
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.hospital-map-infowindow a {
  color: var(--hospital-green);
  font-size: 12px;
  font-weight: 1000;
}

.hospital-map-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.hospital-map-list a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-map-list strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--hospital-green);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}

.hospital-map-list span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hospital-map-list b,
.hospital-map-list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hospital-map-list b {
  color: var(--hospital-ink);
  font-size: 14px;
  font-weight: 1000;
}

.hospital-map-list small {
  color: var(--hospital-muted);
  font-size: 12px;
  font-weight: 400;
}

.hospital-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hospital-section-heading p {
  margin: 0 0 3px;
  color: var(--hospital-green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.hospital-section-heading > span,
.hospital-section-heading > a {
  flex: 0 0 auto;
  color: var(--hospital-muted);
  font-size: 13px;
  font-weight: 400;
}

.hospital-section-heading > .hospital-result-count-wrap {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  gap: 6px;
  justify-items: end;
  color: var(--hospital-muted);
  font-size: 13px;
  font-weight: 400;
  text-align: right;
}

.hospital-section-heading > a,
.hospital-section-heading > span a,
.hospital-result-count-wrap > span a {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #d7d0de;
  border-radius: 999px;
  background: #fff;
  color: var(--hospital-green);
  font-size: 13px;
  font-weight: 1000;
}

.hospital-score-help {
  position: relative;
  display: inline-grid;
  justify-items: end;
}

.hospital-score-help-button {
  display: inline-flex;
  min-height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b39a0;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(107, 57, 160, 0.32);
  text-underline-offset: 3px;
  cursor: help;
}

.hospital-score-help-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: min(286px, calc(100vw - 48px));
  padding: 12px 13px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 15, 22, 0.14);
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.hospital-score-help-panel::before {
  position: absolute;
  top: -6px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #d7d0de;
  border-left: 1px solid #d7d0de;
  background: #fff;
  transform: rotate(45deg);
  content: "";
}

.hospital-score-help:hover .hospital-score-help-panel,
.hospital-score-help:focus-within .hospital-score-help-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hospital-ranking-list {
  display: grid;
  border-top: 1px solid var(--hospital-line);
}

.hospital-recent-search-list {
  display: grid;
  border-top: 1px solid var(--hospital-line);
}

.hospital-recent-search-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 12px;
  min-height: 72px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hospital-line);
  color: var(--hospital-ink);
  align-items: center;
}

.hospital-recent-search-item:hover {
  color: var(--hospital-green);
}

.hospital-recent-search-item > strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f2eff4;
  color: var(--hospital-green);
  font-size: 13px;
  font-weight: 1000;
}

.hospital-recent-search-item span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hospital-recent-search-item b {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hospital-recent-search-item small {
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.hospital-recent-search-item svg {
  width: 18px;
  height: 18px;
  color: #a9a5ea;
}

.hospital-ranking-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 140px;
  gap: 16px;
  min-height: 132px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hospital-line);
  align-items: center;
  cursor: pointer;
}

.hospital-ranking-item:hover .hospital-result-copy h3 a {
  color: var(--hospital-green);
}

.hospital-ranking-item:focus-within {
  outline: 2px solid rgba(133, 78, 185, 0.28);
  outline-offset: 4px;
}

.hospital-rank {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--hospital-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.hospital-result-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.hospital-result-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hospital-result-topline span {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f2eff4;
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.hospital-result-topline span.is-open {
  border: 1px solid rgba(104, 199, 111, 0.32);
  background: rgba(104, 199, 111, 0.14);
  color: #2b7b34;
}

.hospital-result-topline span.is-closed {
  border: 1px solid rgba(245, 101, 112, 0.26);
  background: rgba(245, 101, 112, 0.12);
  color: #b13c49;
}

.hospital-result-status {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(245, 101, 112, 0.26);
  border-radius: 999px;
  background: rgba(245, 101, 112, 0.12);
  color: #b13c49;
  white-space: nowrap;
}

.hospital-result-status.is-open {
  border: 1px solid rgba(104, 199, 111, 0.32);
  background: rgba(104, 199, 111, 0.14);
  color: #2b7b34;
}

.hospital-result-status.is-unknown {
  border-color: #d7d0de;
  background: #f2eff4;
  color: var(--hospital-muted);
}

.hospital-result-copy h3 {
  overflow: hidden;
  margin: 0;
  color: var(--hospital-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hospital-result-copy h3 a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.hospital-result-review {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.hospital-result-review[hidden] {
  display: none;
}

.hospital-result-review .hospital-review-star,
.hospital-result-review b {
  color: var(--hospital-primary);
}

.hospital-result-review b {
  font-weight: 800;
}

.hospital-result-copy p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.hospital-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hospital-result-tags a {
  position: relative;
  z-index: 2;
}

.hospital-result-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 0;
  text-align: right;
}

.hospital-result-meta b {
  color: var(--hospital-blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 1000;
}

.hospital-result-meta.is-distance b {
  font-size: 20px;
  font-weight: 900;
}

.hospital-result-meta span,
.hospital-result-meta small {
  color: var(--hospital-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.hospital-result-more {
  display: grid;
  place-items: center;
  padding: 18px 0 4px;
}

.hospital-result-more .button {
  min-width: 132px;
  min-height: 42px;
}

.hospital-loading-shell {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 42px 20px;
}

.hospital-detail-loading .hospital-loading-shell {
  min-height: min(540px, 62svh);
}

.hospital-loading-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--hospital-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.hospital-loading-animation {
  display: grid;
  place-items: center;
  width: clamp(112px, 18vw, 154px);
  aspect-ratio: 1;
}

.hospital-loading-animation img {
  width: 68px;
  height: 68px;
}

.hospital-loading-animation.is-enhanced img {
  display: none;
}

.hospital-loading-animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hospital-loading-state p {
  margin: 0;
}

.hospital-empty {
  display: grid;
  gap: 14px;
  place-items: center;
  min-height: 220px;
  padding: 26px;
  color: var(--hospital-muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.hospital-empty div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hospital-empty a {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--hospital-mint);
  color: var(--hospital-green);
  font-size: 13px;
  font-weight: 900;
}

.hospital-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 18px;
}

.hospital-square-ad-card {
  display: grid;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 15, 22, 0.06);
  align-items: stretch;
}

.hospital-square-ad-unit {
  display: block;
  width: 100%;
  min-height: 280px;
}

.hospital-link-list {
  display: grid;
  border-top: 1px solid var(--hospital-line);
}

.hospital-link-list a {
  display: grid;
  gap: 4px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hospital-line);
  color: var(--hospital-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.hospital-link-list span {
  color: var(--hospital-muted);
  font-size: 12px;
  font-weight: 400;
}

.hospital-seo-section {
  display: grid;
  gap: 2px;
}

.hospital-directory-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.hospital-directory-columns div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.hospital-directory-columns h3 {
  margin: 0 0 4px;
  color: var(--hospital-ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-directory-columns a {
  display: block;
  overflow: hidden;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hospital-faq {
  display: grid;
  gap: 16px;
}

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

.hospital-faq-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-faq-grid h3 {
  margin: 0;
  color: var(--hospital-green);
  font-size: 16px;
  font-weight: 1000;
}

.hospital-faq-grid p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.hospital-footer {
  background: #fff;
}

.hospital-detail-main {
  gap: 20px;
}

.hospital-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(234, 208, 255, 0.9), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f2eff4 58%, #ead0ff 100%);
  color: var(--hospital-ink);
}

.hospital-detail-hero-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hospital-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--hospital-muted);
  font-size: 13px;
  font-weight: 900;
}

.hospital-breadcrumb a {
  color: var(--hospital-green);
}

.hospital-breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #c3c1c6;
}

.hospital-detail-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 1000;
}

.hospital-detail-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--hospital-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 800;
}

.hospital-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.hospital-detail-hero .button-outline {
  border-color: #d7d0de;
  color: var(--hospital-ink);
}

.hospital-detail-hero .button-primary {
  color: #fff;
  background: linear-gradient(135deg, #854dba, #b06ae6);
  box-shadow: 0 14px 34px rgba(133, 78, 185, 0.18);
}

.hospital-detail-hero .button-soft {
  color: #6b39a0;
  border: 1px solid #d7d0de;
  background: #fff;
}

.hospital-detail-summary {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hospital-detail-summary b {
  color: var(--hospital-green);
  font-size: 13px;
  font-weight: 1000;
}

.hospital-detail-summary span {
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.hospital-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.hospital-detail-content,
.hospital-detail-sidebar {
  display: grid;
  gap: 18px;
}

.hospital-detail-sidebar {
  position: sticky;
  top: 96px;
}

.hospital-detail-ad-card {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 15, 22, 0.06);
}

.hospital-detail-ad-unit {
  display: block;
  width: 100%;
  min-height: 260px;
}

.hospital-detail-keyword-card {
  display: grid;
  gap: 18px;
}

.hospital-detail-keyword-list {
  gap: 8px;
}

.hospital-related-card .hospital-link-list {
  border-top: 0;
}

.hospital-detail-card h2 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-detail-table {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--hospital-line);
}

.hospital-detail-table div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hospital-line);
}

.hospital-detail-table dt,
.hospital-detail-table dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.hospital-detail-table dt {
  color: var(--hospital-muted);
  font-weight: 400;
}

.hospital-detail-table dd {
  min-width: 0;
  color: var(--hospital-ink);
  font-weight: 850;
  word-break: break-word;
}

.hospital-detail-table a {
  color: var(--hospital-green);
}

.hospital-time-table {
  display: grid;
  border-top: 1px solid var(--hospital-line);
}

.hospital-time-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  border-bottom: 1px solid var(--hospital-line);
}

.hospital-time-table span {
  color: var(--hospital-muted);
  font-size: 14px;
  font-weight: 1000;
}

.hospital-time-table strong {
  color: var(--hospital-ink);
  font-size: 15px;
  font-weight: 1000;
}

.hospital-time-table .is-muted strong {
  color: #949297;
}

.hospital-time-note-grid {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.hospital-time-note-grid div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-time-note-grid dt,
.hospital-time-note-grid dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.hospital-time-note-grid dt {
  color: var(--hospital-muted);
}

.hospital-time-note-grid dd {
  color: var(--hospital-ink);
  word-break: keep-all;
}

.hospital-map-caption,
.hospital-muted-text {
  margin: 10px 0 0;
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.hospital-review-placeholder {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-review-placeholder strong {
  color: var(--hospital-ink);
  font-size: 16px;
  font-weight: 1000;
}

.hospital-review-placeholder p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.hospital-visitor-review-panel {
  gap: 18px;
}

.hospital-visitor-review-list {
  display: grid;
  gap: 12px;
}

.hospital-visitor-review-list > p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.hospital-visitor-review-items {
  display: grid;
  gap: 10px;
}

.hospital-visitor-review-item {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--hospital-line);
}

.hospital-visitor-review-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hospital-visitor-review-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hospital-visitor-review-item-head strong {
  color: var(--hospital-ink);
  font-size: 14px;
  font-weight: 800;
}

.hospital-visitor-review-head-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.hospital-visitor-review-rating {
  color: #854dba;
  font-size: 13px;
  letter-spacing: 0;
  white-space: nowrap;
}

.hospital-visitor-review-icon-actions {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.hospital-visitor-review-icon-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #8b8297;
  cursor: pointer;
}

.hospital-visitor-review-icon-actions button:hover {
  border-color: #d7d0de;
  background: #f7f4fb;
  color: #6b39a0;
}

.hospital-visitor-review-icon-actions button:focus-visible {
  outline: 2px solid rgba(133, 78, 185, 0.45);
  outline-offset: 2px;
}

.hospital-visitor-review-icon-actions svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.hospital-visitor-review-item p {
  margin: 0;
  color: #4f4a58;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  white-space: pre-wrap;
  word-break: keep-all;
}

.hospital-visitor-review-item time {
  color: #9a95b0;
  font-size: 12px;
  font-weight: 500;
}

.hospital-visitor-review-form {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hospital-line);
}

.hospital-visitor-review-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hospital-visitor-review-form-head div {
  display: grid;
  gap: 4px;
}

.hospital-visitor-review-form-head strong {
  color: var(--hospital-ink);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.hospital-visitor-review-form-head span {
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.hospital-visitor-review-count {
  color: #9a95b0;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.hospital-visitor-review-stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

.hospital-visitor-review-stars button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d7d0de;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.hospital-visitor-review-stars button.is-active {
  color: #854dba;
}

.hospital-visitor-review-stars button:focus-visible {
  outline: 2px solid rgba(133, 78, 185, 0.45);
  outline-offset: 2px;
}

.hospital-visitor-review-form textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 12px 14px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
  color: var(--hospital-ink);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.hospital-visitor-review-form textarea:disabled {
  background: #f7f4fb;
  color: #9a95b0;
}

.hospital-visitor-review-form textarea:focus {
  border-color: #854dba;
  outline: 3px solid rgba(133, 78, 185, 0.14);
}

.hospital-visitor-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.hospital-visitor-review-message {
  min-height: 18px;
  margin: 0;
  color: #6b39a0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.hospital-visitor-review-message.is-error {
  color: #c24155;
}

.hospital-bottom-toast {
  position: fixed;
  left: 50%;
  bottom: max(26px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: min(420px, calc(100vw - 32px));
  min-height: 50px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: rgba(18, 16, 22, 0.94);
  box-shadow: 0 16px 36px rgba(18, 16, 22, 0.18);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.hospital-bottom-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hospital-bottom-toast.is-error {
  background: rgba(194, 65, 85, 0.96);
}

.hospital-bottom-toast-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
}

.hospital-bottom-toast-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

.hospital-bottom-toast-text {
  min-width: 0;
}

.hospital-blog-review-placeholder {
  align-items: start;
}

.hospital-blog-review-more {
  justify-self: start;
  margin-top: 6px;
}

.hospital-blog-review-list {
  display: grid;
  gap: 10px;
}

.hospital-blog-review-list a {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.hospital-blog-review-list a:hover strong {
  color: var(--hospital-green);
}

.hospital-blog-review-list strong {
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 1000;
}

.hospital-blog-review-list p {
  margin: 0;
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.hospital-blog-review-list span {
  color: #9a95b0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

.hospital-compact-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.hospital-compact-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hospital-line);
}

.hospital-compact-list dt,
.hospital-compact-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.hospital-compact-list dt {
  color: var(--hospital-muted);
}

.hospital-compact-list dd {
  color: var(--hospital-ink);
  text-align: right;
  word-break: keep-all;
}

.hospital-med-section {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.hospital-med-section:first-child {
  padding-top: 4px;
}

.hospital-med-section h3 {
  margin: 0;
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 1000;
}

.hospital-info-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hospital-info-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: #f2eff4;
  color: #6b39a0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 950;
}

.hospital-transport-list {
  display: grid;
  gap: 10px;
}

.hospital-transport-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--hospital-line);
  border-radius: 8px;
  background: #fff;
}

.hospital-transport-item strong {
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 1000;
}

.hospital-transport-item span {
  color: var(--hospital-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.hospital-diagnosis-summary {
  display: grid;
  gap: 8px;
}

.hospital-evaluation-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hospital-evaluation-list div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #d7d0de;
  border-radius: 8px;
  background: #fff;
}

.hospital-evaluation-list strong {
  color: var(--hospital-ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 1000;
}

.hospital-evaluation-list span {
  color: var(--hospital-green);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
}

.hospital-certification-card {
  border-color: rgba(104, 199, 111, 0.34);
  background: linear-gradient(180deg, rgba(104, 199, 111, 0.1), rgba(255, 255, 255, 0.96));
}

.hospital-certification-heading {
  display: grid;
  gap: 7px;
}

.hospital-certification-heading span {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(104, 199, 111, 0.34);
  border-radius: 999px;
  background: #fff;
  color: var(--hospital-green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 1000;
}

.hospital-certification-heading strong {
  color: var(--hospital-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .hospital-search-layout,
  .hospital-dashboard,
  .hospital-info-grid,
  .hospital-theme-strip,
  .hospital-sponsored-list,
  .hospital-directory-columns,
  .hospital-seo-intro-grid,
  .hospital-faq-grid,
  .hospital-map-layout,
  .hospital-detail-hero,
  .hospital-detail-layout {
    grid-template-columns: 1fr;
  }

  .hospital-side-panel,
  .hospital-ad-rail,
  .hospital-square-ad-card,
  .hospital-detail-sidebar {
    position: static;
  }

  .hospital-ad-rail,
  .hospital-square-ad-card {
    min-height: 280px;
  }

  .hospital-ad-unit,
  .hospital-square-ad-unit {
    min-height: 280px;
  }

  .hospital-search-panel {
    grid-template-columns: 1fr;
  }

  .hospital-field-wide,
  .hospital-time-filter,
  .hospital-search-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hospital-header .header-actions .button {
    display: inline-flex;
  }

  .hospital-header .header-actions {
    gap: 6px;
  }

  .hospital-header .header-actions .button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hospital-header .header-actions .button svg {
    width: 14px;
    height: 14px;
  }

  .hospital-main {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .hospital-search-layout {
    min-height: auto;
    gap: 14px;
    padding: 16px;
  }

  .hospital-search-copy {
    gap: 6px;
  }

  .hospital-kicker {
    font-size: 11px;
  }

  .hospital-search-copy h1 {
    font-size: 23px;
    line-height: 1.24;
  }

  .hospital-search-copy p:not(.hospital-kicker) {
    display: none;
  }

  .hospital-search-panel {
    gap: 8px;
    padding: 12px;
  }

  .hospital-field {
    gap: 5px;
  }

  .hospital-field input,
  .hospital-field select {
    min-height: 40px;
    font-size: 14px;
  }

  .hospital-time-filter {
    gap: 6px;
  }

  .hospital-time-filter span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hospital-search-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .hospital-search-actions .button {
    min-height: 40px;
    justify-content: center;
  }

  .hospital-ranking-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
  }

  .hospital-result-panel .hospital-sponsored-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
  }

  .hospital-result-panel .hospital-sponsored-card img,
  .hospital-result-panel .hospital-sponsored-icon {
    width: 48px;
    height: 48px;
  }

  .hospital-sponsored-side {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .hospital-result-meta {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .hospital-result-copy h3 {
    font-size: 17px;
    white-space: normal;
  }

  .hospital-result-meta b {
    font-size: 24px;
  }

  .hospital-result-meta.is-distance b {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .hospital-search-actions .button {
    width: auto;
  }

  .hospital-search-actions .button-outline {
    min-width: 76px;
  }

  .hospital-detail-actions .button {
    width: 100%;
  }

  .hospital-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .hospital-section-heading > .hospital-result-count-wrap,
  .hospital-score-help {
    justify-items: start;
    text-align: left;
  }

  .hospital-score-help-panel {
    right: auto;
    left: 0;
  }

  .hospital-score-help-panel::before {
    right: auto;
    left: 20px;
  }

  .hospital-side-panel,
  .hospital-ad-rail,
  .hospital-map-panel,
  .hospital-result-panel,
  .hospital-detail-card,
  .hospital-info-grid > article,
  .hospital-square-ad-card,
  .hospital-seo-section,
  .hospital-faq {
    padding: 16px;
  }

  .hospital-detail-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
