:root {
  --ink: #171817;
  --muted: #6a6c68;
  --line: #dedfd9;
  --surface: #ffffff;
  --canvas: #f4f4f0;
  --soft: #f0f1ec;
  --accent: #ff5f45;
  --accent-soft: #fff0eb;
  --mint: #d7eee4;
  --blue: #dce8f5;
  --yellow: #f5df83;
  --rail: #202321;
  --rail-width: 72px;
  --max-frame: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 110px;
  color: var(--ink);
  background: var(--canvas);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.prototype-tools {
  position: fixed;
  top: 92px;
  right: 18px;
  bottom: auto;
  z-index: 200;
  width: 260px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #cfd1cb;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(23, 24, 23, 0.14);
  backdrop-filter: blur(12px);
}

.prototype-tools:has(details:not([open])) {
  width: 112px;
}

.prototype-tools summary {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.prototype-tools__body {
  padding: 0 12px 12px;
}

.prototype-label {
  display: block;
  margin: 9px 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.prototype-label:first-child {
  margin-top: 0;
}

.prototype-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 3px;
  background: #eceee9;
  border-radius: 6px;
}

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

.prototype-segment button {
  min-width: 0;
  padding: 7px 3px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 11px;
}

.prototype-segment button.is-active {
  background: #fff;
  box-shadow: 0 1px 4px rgba(23, 24, 23, 0.12);
  font-weight: 800;
}

.prototype-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  cursor: pointer;
}

.prototype-toggle input {
  accent-color: var(--accent);
}

.app-frame {
  display: grid;
  grid-template-columns: var(--rail-width) minmax(0, var(--max-frame));
  width: min(calc(var(--max-frame) + var(--rail-width)), 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--surface);
  border-inline: 1px solid #d9dad5;
}

.side-rail {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--rail-width);
  height: 100vh;
  padding: 18px 0;
  background: var(--rail);
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
}

.rail-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #f7f7f3;
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 22px;
}

.rail-button:hover,
.rail-button:focus-visible {
  background: #373b38;
  outline: none;
}

.rail-button b {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-size: 10px;
  line-height: 16px;
}

.rail-button::after,
.social-links a::after {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  z-index: 80;
  padding: 7px 9px;
  color: #fff;
  background: #111;
  border-radius: 4px;
  content: attr(data-tooltip);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(4px, -50%);
  transition: 150ms ease;
  white-space: nowrap;
}

.rail-button:hover::after,
.rail-button:focus-visible::after,
.social-links a:hover::after,
.social-links a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.site-column {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 170px minmax(300px, 680px) 170px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-size: 24px;
  font-weight: 900;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  height: 46px;
  background: #f1f2ee;
  border: 1px solid transparent;
  border-radius: 7px;
}

.search-form:focus-within {
  background: #fff;
  border-color: #aeb1aa;
}

.search-form input {
  min-width: 0;
  padding: 0 4px 0 16px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.search-form button,
.header-actions button {
  padding: 0;
  background: transparent;
  border: 0;
}

.search-form button {
  font-size: 24px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.header-actions button {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.header-actions button:hover {
  background: #eff0ec;
}

.header-actions b {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-size: 10px;
  line-height: 16px;
}

.profile-button {
  color: #fff;
  background: var(--ink) !important;
  font-weight: 800;
}

.mobile-header {
  display: none;
}

.program-page {
  width: min(1200px, calc(100% - 64px));
  margin: 28px auto 100px;
}

.program-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6.4;
  background: #222;
  border-radius: 6px;
}

.program-cover::after {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 17, 0.08);
  content: "";
  pointer-events: none;
}

.program-cover img {
  height: 100%;
  object-fit: cover;
}

.cover-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  font-size: 22px;
}

.save-button.is-saved {
  color: var(--accent);
}

.program-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  padding: 40px 16px 34px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-kicker,
.host-summary__copy > span,
.availability-summary > span {
  display: block;
  margin-bottom: 10px;
  color: #62655f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.program-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

.program-lead {
  max-width: 650px;
  margin: 18px 0 20px;
  color: #4f524d;
  font-size: 18px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 7px 10px;
  background: #eff0ec;
  border-radius: 4px;
  color: #4d504b;
  font-size: 12px;
  font-weight: 700;
}

.availability-summary {
  align-self: end;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.availability-summary--empty {
  border-left-color: #8f928b;
}

.availability-summary strong,
.availability-summary small {
  display: block;
}

.availability-summary strong {
  font-size: 18px;
  line-height: 1.45;
}

.availability-summary small {
  margin: 7px 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.availability-summary button {
  padding: 0 0 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.host-summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 0 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.host-avatar {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
}

.host-summary h2,
.host-summary p {
  margin: 0;
}

.host-summary h2 {
  font-size: 21px;
}

.host-summary p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.host-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
}

.social-links {
  display: flex;
  gap: 7px;
}

.social-links a {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.social-links a::after {
  top: calc(100% + 9px);
  left: 50%;
  transform: translate(-50%, 4px);
}

.social-links a:hover::after,
.social-links a:focus-visible::after {
  transform: translate(-50%, 0);
}

.host-profile-link {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

body.host-profile-missing .host-profile-link,
body.host-profile-missing .host-detail {
  display: none;
}

.match-panel,
.invitation-panel {
  display: grid;
  margin: 34px 16px 0;
  border-radius: 6px;
}

.match-panel {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  padding: 28px 30px;
  background: #f1f6fb;
  border: 1px solid #bbcee1;
}

.match-panel h2 {
  margin: 0;
  font-size: 21px;
}

.match-label {
  display: inline-block;
  margin-bottom: 9px;
  padding: 5px 8px;
  color: #23466a;
  background: #d5e6f6;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.match-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-panel li {
  position: relative;
  padding-left: 18px;
  color: #46505a;
  font-size: 14px;
  line-height: 1.55;
}

.match-panel li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #4b7aa7;
  border-radius: 50%;
  content: "";
}

.invitation-panel {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  background: #fff6d8;
  border: 1px solid #d9bf61;
}

.invitation-panel__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 25px;
}

.invitation-panel__copy > span {
  color: #655819;
  font-size: 11px;
  font-weight: 900;
}

.invitation-panel h2 {
  margin: 6px 0 12px;
  font-size: 24px;
}

.invitation-panel blockquote {
  margin: 0 0 17px;
  color: #494323;
  font-size: 15px;
  line-height: 1.65;
}

.invitation-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.invitation-facts span {
  font-size: 13px;
}

.invitation-panel p {
  margin: 13px 0 0;
  color: #655f3c;
  font-size: 12px;
}

.content-flow {
  display: flex;
  flex-direction: column;
}

.layout-section {
  margin: 0 16px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.story-section {
  order: 1;
}

.schedule-section {
  order: 2;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 30px;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.tiptap-mark {
  color: #8a8d86;
  font-size: 11px;
}

.date-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.date-filter::-webkit-scrollbar {
  display: none;
}

.date-filter button {
  flex: none;
  min-height: 40px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #cfd1cb;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.date-filter button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

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

.schedule-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 70px;
  gap: 16px;
  align-items: center;
  min-height: 144px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d5d7d0;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.schedule-card:hover {
  border-color: #9ea199;
}

.schedule-card.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.schedule-card.is-recommended::before {
  position: absolute;
  top: -1px;
  left: 18px;
  height: 4px;
  width: 82px;
  background: #5e8db7;
  content: "";
}

.schedule-card__date {
  display: grid;
  place-items: center;
  align-content: center;
  width: 62px;
  height: 74px;
  background: #f0f1ed;
  border-radius: 5px;
}

.schedule-card__date strong {
  font-size: 25px;
  line-height: 1;
}

.schedule-card__date span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.schedule-card__topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.schedule-card__topline span,
.schedule-card__topline b {
  font-size: 10px;
}

.schedule-card__topline span {
  color: #426d94;
  font-weight: 800;
}

.schedule-card__topline b {
  color: var(--accent);
}

.schedule-card h3,
.schedule-card p,
.schedule-card small {
  margin: 0;
}

.schedule-card h3 {
  font-size: 17px;
  line-height: 1.45;
}

.schedule-card p {
  margin-top: 5px;
  color: #555852;
  font-size: 12px;
}

.schedule-card small {
  display: block;
  margin-top: 7px;
  color: #858881;
  font-size: 10px;
}

.schedule-card > button {
  width: 70px;
  height: 38px;
  padding: 0;
  background: #fff;
  border: 1px solid #bfc2bb;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.schedule-card:hover > button,
.schedule-card:focus-within > button {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.tiptap-content {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #343633;
}

.tiptap-content h3 {
  margin: 50px 0 15px;
  color: var(--ink);
  font-size: 24px;
}

.tiptap-content p,
.tiptap-content li {
  font-size: 16px;
  line-height: 1.9;
}

.tiptap-content .story-opening {
  margin-top: 0;
  color: #3f423d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.tiptap-content img {
  max-height: 440px;
  margin: 40px 0;
  object-fit: cover;
  border-radius: 6px;
}

.tiptap-content blockquote {
  margin: 36px 0;
  padding: 22px 24px;
  background: #f0f1ed;
  border-left: 4px solid var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.tiptap-content ol {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.empty-schedule {
  padding: 62px 24px;
  text-align: center;
  background: #f0f1ed;
  border: 1px solid #d8dad3;
  border-radius: 6px;
}

.empty-schedule > span {
  font-size: 32px;
}

.empty-schedule h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.empty-schedule p {
  margin: 0 0 22px;
  color: var(--muted);
}

.empty-schedule button {
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.host-detail,
.policy-section {
  margin: 0 16px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.host-detail {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}

.host-detail h2,
.policy-section h2 {
  margin: 0;
  font-size: 26px;
}

.host-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.policy-grid button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #d5d7d0;
  border-radius: 6px;
  font-weight: 700;
  text-align: left;
}

.sticky-action {
  position: fixed;
  right: max(20px, calc((100vw - 1352px) / 2 + 24px));
  bottom: 20px;
  left: max(92px, calc((100vw - 1352px) / 2 + var(--rail-width) + 24px));
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 48px minmax(220px, 340px);
  gap: 10px;
  align-items: center;
  max-width: 810px;
  min-height: 72px;
  margin-left: auto;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d5d7d0;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(23, 24, 23, 0.2);
  backdrop-filter: blur(12px);
}

.sticky-action__summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.sticky-action__summary strong {
  font-size: 18px;
}

.sticky-action__summary span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-save,
.sticky-primary {
  height: 48px;
  border-radius: 6px;
}

.sticky-save {
  padding: 0;
  background: #fff;
  border: 1px solid #cfd1cb;
  font-size: 22px;
}

.sticky-primary {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 0;
  font-weight: 900;
}

body[data-state="invited"] .sticky-primary {
  color: var(--ink);
  background: var(--yellow);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 106px;
  z-index: 210;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  color: #fff;
  background: #151615;
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1150px) {
  .site-header {
    grid-template-columns: 135px minmax(260px, 1fr) 110px;
    padding-inline: 24px;
  }

  .program-page {
    width: min(100% - 40px, 1080px);
  }

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

  .sticky-action {
    right: 14px;
    left: 86px;
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .app-frame {
    display: block;
    width: 100%;
    border: 0;
  }

  .side-rail,
  .site-header {
    display: none;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    min-height: 60px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-header a,
  .mobile-header button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 21px;
  }

  .mobile-header strong {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .program-page {
    width: min(100% - 32px, 900px);
    margin-top: 18px;
  }

  .program-cover {
    aspect-ratio: 16 / 8;
  }

  .program-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .availability-summary {
    align-self: auto;
  }

  .match-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .host-detail {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .host-detail .host-profile-link {
    grid-column: 2;
    justify-self: start;
  }

  .sticky-action {
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: minmax(126px, 1fr) 46px minmax(150px, 220px);
    min-height: 66px;
    padding: 8px 8px 8px 14px;
  }
}

@media (max-width: 767px) {
  .prototype-tools {
    top: 70px;
    right: 10px;
    bottom: auto;
    width: min(250px, calc(100% - 20px));
  }

  .prototype-tools:has(details:not([open])) {
    width: 102px;
  }

  .program-page {
    width: 100%;
    margin-top: 0;
  }

  .program-cover {
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .cover-actions {
    top: 12px;
    right: 12px;
  }

  .program-intro {
    padding: 28px 20px;
  }

  .program-intro h1 {
    font-size: 34px;
  }

  .program-lead {
    font-size: 16px;
  }

  .host-summary {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    margin-inline: 20px;
  }

  .host-avatar {
    width: 72px;
    height: 72px;
  }

  .host-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .match-panel,
  .invitation-panel {
    margin: 24px 20px 0;
    padding: 22px;
  }

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

  .invitation-panel__mark {
    width: 48px;
    height: 48px;
  }

  .invitation-facts {
    display: grid;
    gap: 6px;
  }

  .layout-section,
  .host-detail,
  .policy-section {
    margin-inline: 20px;
    padding-block: 46px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading p,
  .tiptap-mark {
    display: block;
    margin-top: 10px;
  }

  .date-filter {
    margin-right: -20px;
    padding-right: 20px;
  }

  .schedule-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .schedule-card__date {
    width: 52px;
    height: 66px;
  }

  .schedule-card > button {
    grid-column: 1 / -1;
    width: 100%;
    height: 42px;
  }

  .tiptap-content .story-opening {
    font-size: 18px;
  }

  .tiptap-content p,
  .tiptap-content li {
    font-size: 15px;
  }

  .tiptap-content h3 {
    margin-top: 40px;
    font-size: 22px;
  }

  .tiptap-content img {
    max-height: 360px;
  }

  .host-detail {
    display: block;
  }

  .host-detail p {
    margin: 18px 0;
  }

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

  .sticky-action {
    grid-template-columns: minmax(0, 1fr) 44px minmax(122px, 42%);
  }

  .sticky-action__summary strong {
    font-size: 15px;
  }

  .sticky-action__summary span {
    font-size: 10px;
  }

  .sticky-primary {
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .sticky-action {
    grid-template-columns: minmax(0, 1fr) 42px 118px;
  }

  .sticky-save,
  .sticky-primary {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
