:root {
  --bg-body: #f4f7f6;
  --bg-body-alt: #eef3f7;
  --bg-card: #ffffff;
  --bg-muted: #f6f8fb;
  --calendar-panel: #7fc0b7;
  --calendar-panel-border: #4f9a90;
  --calendar-toolbar-bg: rgba(255, 255, 255, 0.14);
  --calendar-cell-bg: rgba(255, 255, 255, 0.96);
  --calendar-cell-border: rgba(255, 255, 255, 0.42);
  --calendar-today-ring: rgba(18, 62, 77, 0.22);
  --ios-blue: #123e4d;
  --calendar-badge-bg: #a83a5f;
  --text-primary: #243447;
  --text-secondary: #667085;
  --text-muted: #98a2b3;
  --border-color: #e6ebf2;
  --accent: #1677ff;
  --accent-soft: #eef5ff;
  --success: #12b76a;
  --warning: #f79009;
  --danger: #f04438;
  --shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.06);
  --brand-shinhan-primary: #0046ff;
  --brand-shinhan-secondary: #2878f5;
  --brand-samsung-primary: #1428a0;
  --brand-kb-primary: #ffbc00;
  --brand-kb-secondary: #60584c;
  --brand-hyundai-primary: #000000;
  --brand-lotte-primary: #2c2a26;
  --brand-woori-primary: #0067ac;
  --brand-woori-secondary: #20c4f4;
  --brand-woori-accent: #0078b9;
  --brand-hana-primary: #009178;
  --brand-hana-accent: #dc231e;
  --brand-nh-primary: #0066b3;
  --brand-nh-secondary: #1fb25a;
  --brand-nh-accent: #ffc20e;
  --brand-bc-primary: #fa3246;
  --brand-bc-secondary: #323232;
  --brand-skt: #e2231a;
  --brand-kt: #101820;
  --brand-lgu: #e6007e;
  --brand-starbucks: #00704a;
  --brand-cgv: #e71a0f;
  --brand-oliveyoung: #9aca3c;
  --brand-naver-shopping: #03C75A;
  --brand-pascucci: #8B5E3C;
  --brand-10billioncoffee: #5C3D1E;
  --brand-shakeshack: #75B22F;
  --brand-touslesjours: #C0392B;
  --hotdeal-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background-color: var(--bg-body);
  background-image: none;
}

body {
  margin: 0;
  font-family: "Pretendard Variable", "SUIT Variable", "Noto Sans KR", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-body);
  background-image: none;
}

body.drawer-open {
  overflow: hidden;
}

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

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

.page-shell {
  min-height: 100vh;
  padding-top: calc(20px + env(safe-area-inset-top));
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  padding-left: 10px;
  padding-right: 10px;
  background: transparent;
  background-image: none;
}

.app-shell {
  max-width: 640px;
  margin: 0 auto;
  background: transparent;
  background-image: none;
}

.content-stack {
  display: grid;
  gap: 12px;
}

body[data-page-kind="detail"] {
  font-family: var(--hotdeal-font-stack);
}

body[data-page-kind="detail"] .page-shell {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

body[data-page-kind="detail"] .app-shell {
  max-width: 600px;
  background: var(--bg-card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body[data-page-kind="detail"] .content-stack {
  gap: 0;
}

body[data-page-kind="login"] {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 228, 138, 0.34), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(186, 241, 207, 0.28), transparent 24%),
    linear-gradient(180deg, #eef2f5 0%, #f8fafc 48%, #edf2f7 100%);
}

body[data-page-kind="login"] .page-shell {
  padding-top: calc(44px + env(safe-area-inset-top));
  padding-bottom: calc(34px + env(safe-area-inset-bottom));
}

body[data-page-kind="login"] .app-shell {
  max-width: 780px;
}

body[data-page-kind="login"] .content-stack {
  gap: 18px;
}

body[data-page-kind="login"] .header-section {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

body[data-page-kind="login"] .header-badge {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #2563eb;
}

.header-section,
.page-card {
  background: var(--bg-card);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.header-section {
  position: relative;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 8px 25px -5px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.favorites-app-header {
  padding: 12px 14px;
  font-family: var(--hotdeal-font-stack);
}

.favorites-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}

.favorites-back-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: 10px;
  flex-shrink: 0;
}

.favorites-back-link:hover {
  background: var(--bg-muted);
}

.favorites-header-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--text-primary);
  font-size: 1.2em;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.favorites-header-star {
  color: #f1c40f;
  font-size: 1em;
  line-height: 1;
  transform: translateY(-0.01em);
}

.board-app-header {
  padding: 18px 20px;
  gap: 12px;
}

.board-header-row {
  align-items: flex-start;
  gap: 16px;
}

.board-header-copyblock {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.board-header-kicker {
  margin: 0;
  color: var(--calendar-panel-border);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-header-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.44rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.board-header-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.5;
}

.board-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.board-header-actions .button-primary,
.board-header-actions .button-secondary,
.board-header-actions .button-ghost {
  width: auto;
}

.board-header-link,
.board-submit-link {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.board-submit-link {
  border-color: var(--calendar-panel-border);
  background: var(--calendar-panel);
  color: var(--ios-blue);
}

.board-submit-link:hover {
  background: #74b8ae;
  border-color: #478c83;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.calendar-app-header .header-top-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: center;
  min-height: 40px;
}

.header-back-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  flex: 0 0 auto;
  transition: background-color 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.header-back-link:hover {
  background: var(--bg-muted);
}

.header-back-link svg {
  width: 20px;
  height: 20px;
}

.header-title-wrap {
  width: 100%;
  max-width: 100%;
  pointer-events: none;
  text-align: center;
  justify-self: center;
}

.header-title-cluster {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.header-brand-link {
  text-decoration: none;
}

.header-title-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.title-badge {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.title-badge svg {
  width: 18px;
  height: 18px;
}

.title-badge-gift {
  background: #fff1e7;
  border: 1px solid rgba(255, 138, 54, 0.18);
  color: #f27a27;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 14px rgba(242, 122, 39, 0.12);
}

.title-badge-gift::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ffd66e;
  box-shadow: 0 0 0 2px rgba(255, 214, 110, 0.18);
}

.main-title {
  color: var(--text-primary);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 3px;
}

.main-title-emoji {
  display: inline-block;
  margin-right: 3px;
  transform: translateY(-0.02em);
}

.main-title-icon {
  flex: 0 0 auto;
  font-size: 0.96em;
  line-height: 1;
}

.main-title-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-domain {
  color: #007bff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.95;
  margin-left: 1px;
}

.header-side-badges {
  display: flex;
  align-items: center;
}

.header-right-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: -4px;
  margin-right: 0;
}

.calendar-app-header .header-right-icons {
  justify-content: flex-end;
  gap: 0;
  margin-top: 0;
  margin-right: -3px;
  z-index: 1;
}

.calendar-app-header .header-right-icons .icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.header-calendar-actions {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-register-link {
  min-width: 62px;
  min-height: 40px;
  padding: 6px 9px 7px;
  border-radius: 14px;
  border: 1px solid var(--calendar-panel-border);
  background: var(--calendar-panel);
  color: var(--ios-blue);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 1px 2px rgba(18, 62, 77, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-register-link:hover {
  background: #74b8ae;
  border-color: #478c83;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 12px rgba(18, 62, 77, 0.12);
}

.header-register-kicker {
  font-size: 0.63rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.78;
}

.header-register-main {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 26px;
  margin-top: -2px;
}

.header-auth-badge,
.header-auth-copy {
  min-width: 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.header-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(127, 192, 183, 0.12);
  color: var(--calendar-panel-border);
  font-weight: 700;
}

.header-auth-link {
  flex-shrink: 0;
  color: var(--calendar-panel-border);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-auth-link:hover {
  color: var(--ios-blue);
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  overflow: visible;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.favorite-header-link {
  text-decoration: none;
}

.header-register-icon-link {
  text-decoration: none;
}

.favorite-header-link.is-active svg {
  fill: #f1c40f;
  stroke: #f1c40f;
  filter: drop-shadow(0 0 2px rgba(241, 196, 15, 0.4));
}

.filter-icon-btn.has-filter {
  color: #007bff;
}

.filter-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: #ff6b6b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.18);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-notice-row {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 2px;
  min-height: 20px;
}

.header-desc {
  display: block;
  width: 100%;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-app-header {
  padding: 18px 20px;
  gap: 12px;
}

.calendar-app-header .main-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.12em;
  line-height: 1.1;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calendar-app-header .sub-domain {
  font-size: 0.8rem;
}

.calendar-app-header .header-desc {
  font-size: 0.8rem;
}

.calendar-app-header .integrated-search-bar {
  padding: 11px 16px;
  border-radius: 14px;
}

.header-search-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.header-search-row .integrated-search-bar {
  flex: 1;
}

.top-utility-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.calendar-header-actions {
  justify-content: flex-end;
}

.header-board-link {
  min-width: 112px;
}

.compact-board-link {
  min-width: 84px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.planner-month-summary-kicker,
.planner-calendar-kicker {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-compact {
  min-height: 38px;
}

.integrated-search-bar {
  width: 100%;
  box-sizing: border-box;
  background-color: #f1f3f5;
  padding: 11px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.integrated-search-bar:focus-within {
  background-color: #fff;
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.12);
  transform: translateY(-1px);
}

.search-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
  box-shadow: none;
}

.search-input:focus {
  box-shadow: none;
  background: transparent;
}

.search-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.search-icon {
  color: #adb5bd;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.clear-btn-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.planner-calendar-card {
  position: sticky;
  top: 0;
  z-index: 12;
  isolation: auto;
  display: grid;
  gap: 7px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 16px 30px 11px;
  overflow: hidden;
  background: var(--calendar-panel);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow:
    inset 0 6px 0 rgba(34, 92, 86, 0.24),
    inset 0 -6px 0 rgba(34, 92, 86, 0.24);
  backdrop-filter: none;
}

.planner-calendar-card::before,
.planner-calendar-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(20, 70, 66, 0.18);
  pointer-events: none;
}

.planner-calendar-card::before {
  top: 0;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 1px 0 rgba(26, 76, 71, 0.08);
}

.planner-calendar-card::after {
  bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 -1px 0 rgba(26, 76, 71, 0.08);
}

.planner-calendar-card.is-collapsed {
  gap: 7px;
  padding-bottom: 9px;
}

.planner-calendar-toolbar,
.planner-event-top,
.planner-event-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.selected-date-lockup,
.planner-event-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.selected-date-lockup strong {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #173746;
}

.planner-year-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(23, 55, 70, 0.78);
  transform: translateY(-0.08rem);
}

.planner-inline-date {
  flex: 1;
}

.selected-date-lockup span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.4;
}

.planner-calendar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.calendar-nav-btn,
.calendar-today-btn,
.calendar-view-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 4px 10px rgba(15, 23, 42, 0.05);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.calendar-nav-btn {
  width: 34px;
  padding: 0;
}

.calendar-today-btn {
  padding: 0 12px;
}

.calendar-view-toggle {
  padding: 0 12px;
  cursor: pointer;
  background: #123e4d;
  color: #fff;
  border-color: rgba(18, 62, 77, 0.28);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 18px rgba(18, 62, 77, 0.18);
}

.calendar-nav-btn:hover,
.calendar-today-btn:hover,
.calendar-view-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(18, 62, 77, 0.12);
}

.calendar-view-toggle:hover {
  background: #103744;
  border-color: rgba(16, 55, 68, 0.34);
}

.calendar-nav-btn:active,
.calendar-today-btn:active,
.calendar-view-toggle:active {
  transform: translateY(0);
}

.planner-weekday-row,
.planner-week-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.planner-weekday-row {
  align-items: center;
  color: rgba(23, 55, 70, 0.76);
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2px;
  min-height: 24px;
  padding: 0 4px;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.planner-weekday-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border-radius: 999px;
}

.planner-weekday-row span:first-child {
  color: #c14e5e;
}

.planner-weekday-row span:last-child {
  color: #8b9dc2;
}

.planner-month-grid {
  display: grid;
  gap: 6px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.planner-week-row {
  max-height: 58px;
  overflow: visible;
  padding-top: 0;
  transition:
    max-height 0.28s ease,
    opacity 0.24s ease,
    transform 0.24s ease,
    margin 0.24s ease;
}

.planner-calendar-card.is-collapsed .planner-week-row:not(.is-selected-week) {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  margin: -4px 0;
  overflow: hidden;
  padding-top: 0;
}

.planner-calendar-card.is-collapsed .planner-month-grid {
  display: block;
  gap: 0;
}

.planner-calendar-card.is-collapsed .planner-week-row:not(.is-selected-week) {
  display: none;
}

.planner-day-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 34px;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  overflow: visible;
  box-shadow: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    min-height 0.24s ease,
    padding 0.24s ease;
}

.planner-calendar-card:not(.is-collapsed) .planner-day-cell {
  min-height: 34px;
}

.planner-day-cell:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 62, 77, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.planner-week-row > :first-child .planner-day-number {
  color: #c14e5e;
}

.planner-day-cell.is-outside-month {
  opacity: 0.38;
  box-shadow: none;
}

.planner-day-cell.is-past:not(.is-selected):not(.is-today) {
  opacity: 0.48;
}

.planner-day-cell.is-past:not(.is-selected):not(.is-today) .planner-day-number {
  color: rgba(23, 55, 70, 0.58);
}

.planner-day-cell.is-past:not(.is-selected):not(.is-today) .planner-day-badge {
  opacity: 0.72;
}

.planner-day-cell.is-holiday:not(.is-selected) .planner-day-number {
  color: #c14e5e;
}

.planner-day-cell.is-today {
  border-color: var(--calendar-today-ring);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(18, 62, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.planner-day-cell.is-selected {
  background: var(--ios-blue);
  border-color: rgba(18, 62, 77, 0.82);
  color: #fff;
  box-shadow:
    0 12px 20px rgba(18, 62, 77, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.planner-day-cell.is-selected .planner-day-number {
  color: #fff;
}

.planner-day-cell.is-selected .planner-day-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: none;
}

.planner-day-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.05em;
  line-height: 1;
}

.planner-day-number-wrap.has-badge {
  padding-right: 0.58rem;
  padding-top: 0.02rem;
}

.planner-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.planner-day-holiday {
  max-width: calc(100% - 6px);
  color: #c14e5e;
  font-size: 0.54rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.planner-day-badge {
  position: absolute;
  top: -0.32rem;
  right: 0;
  min-width: 0.82rem;
  height: 0.82rem;
  padding: 0 0.16rem;
  border-radius: 999px;
  background: var(--calendar-badge-bg);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 10px rgba(35, 56, 118, 0.28);
  z-index: 1;
}

.planner-calendar-card.is-collapsed .planner-day-cell {
  min-height: 34px;
  padding: 0;
  border-radius: 16px;
}

.planner-calendar-card.is-collapsed .planner-day-holiday {
  display: none;
}

.planner-calendar-card.is-collapsed .planner-week-row.is-selected-week {
  max-height: 40px;
  padding-top: 0;
  margin: 0;
}

.planner-calendar-card.is-collapsed .planner-day-number-wrap.has-badge {
  padding-right: 0.62rem;
}

.planner-calendar-card.is-collapsed .planner-day-badge {
  top: -0.36rem;
  min-width: 0.86rem;
  height: 0.86rem;
  font-size: 0.52rem;
}

.selected-day-panel,
.selected-day-list {
  display: grid;
  gap: 10px;
}

.holiday-banner {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(193, 78, 94, 0.14);
  background: rgba(255, 244, 246, 0.9);
}

.holiday-banner strong {
  color: #b63d52;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.holiday-banner span {
  color: #8f4a57;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.planner-event-card {
  position: relative;
  padding: 12px;
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.planner-event-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(18, 62, 77, 0.12);
}

.planner-event-card:active {
  transform: translateY(0);
}

.planner-event-card:focus-within {
  border-color: rgba(22, 119, 255, 0.28);
  box-shadow:
    0 0 0 3px rgba(22, 119, 255, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
}

.planner-event-card-link,
.planner-event-card-link-body {
  display: grid;
  gap: 7px;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.planner-event-card-link-body {
  min-width: 0;
}

.planner-event-card-content-link {
  padding-top: 0;
}

.planner-event-card-link:focus-visible,
.planner-event-card-link-body:focus-visible {
  outline: none;
}

.planner-card-chip-link {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.planner-card-chip-link:focus-visible {
  outline: none;
}

.planner-card-top-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
}

.planner-card-chip-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}

.planner-provider-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.favorite-toggle-btn {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: #c0cad8;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  align-self: flex-start;
  transition: transform 0.18s ease, color 0.18s ease;
}

.favorite-toggle-btn:hover {
  transform: scale(1.08);
  color: #aab5c3;
}

.favorite-toggle-btn:active {
  transform: scale(0.92);
}

.favorite-toggle-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}

.favorite-toggle-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.favorite-toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease;
}

.favorite-toggle-btn.is-active {
  color: #f1c40f;
}

.favorite-toggle-btn.is-active:hover {
  color: #f1c40f;
}

.favorite-toggle-btn.is-active svg {
  fill: currentColor;
  stroke: currentColor;
  transform: scale(1.06);
}

.planner-schedule-chip {
  min-height: 22px;
  padding: 0 7px;
  border-radius: 7px;
  border: 1px solid rgba(18, 62, 77, 0.12);
  background: rgba(18, 62, 77, 0.08);
  color: #173746;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.planner-schedule-chip.is-today {
  border-color: rgba(168, 58, 95, 0.14);
  background: rgba(168, 58, 95, 0.1);
  color: #8f284d;
}

/* Live distance chip injected into the card chip-row (leftmost). Tappable: it
   opens the map centered on the matched store. Mirrors .planner-card-chip-link. */
.planner-card-dist-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 24px;
  padding: 6px 8px; /* >=44px tap target with the line-box */
  margin: -6px 0; /* keep visual height compact while preserving tap area */
  border: 0;
  background: transparent;
  color: var(--color-accent, #a83a5f);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(168, 58, 95, 0.45);
  text-underline-offset: 2px;
  cursor: pointer;
  border-radius: 7px;
}

.planner-card-dist-chip:hover {
  text-decoration-color: var(--color-accent, #a83a5f);
}

.planner-card-dist-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 58, 95, 0.2);
}

.planner-card-dist-chip .dist-pin {
  font-size: 0.78rem;
  line-height: 1;
}

/* Store-name label overlay shown above gift pins when zoomed in (level <= 4). */
.map-store-label {
  position: relative;
  display: inline-block;
  padding: 2px 7px;
  background: #ffffff;
  border: 1px solid var(--color-border-subtle, #e5e5ea);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  color: #173746;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}

/* Focused store (opened via a list distance-chip tap): accent-filled, lifted
   clear of the taller highlight pin, and painted above it (zIndex set in JS). */
.map-store-label.is-selected {
  background: var(--accent, #1677ff);
  border-color: var(--accent, #1677ff);
  color: #ffffff;
  padding: 3px 9px;
  font-size: 12px;
  box-shadow: 0 3px 10px rgba(22, 119, 255, 0.35);
  transform: translateY(-8px);
}
.map-store-label.is-selected::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent, #1677ff);
}

/* Current-location row above the map toggle button. */
.map-location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
}

.map-location-label {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text-secondary, #666);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-location-label.is-denied {
  color: var(--color-text-secondary, #888);
  font-weight: 500;
}

/* Map toggle button: accent-filled pill (closed) → soft outline (open). */
.map-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--accent, #1677ff);
  background: var(--accent, #1677ff);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.28);
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}

.map-toggle-btn:hover {
  transform: translateY(-1px);
}

.map-toggle-btn:active {
  transform: translateY(1px);
}

.map-toggle-icon {
  flex: 0 0 auto;
}

/* Open state: recede to a soft, clearly-active outlined chip. */
.map-toggle-btn[aria-pressed="true"] {
  background: var(--accent-soft, #eef5ff);
  color: var(--accent, #1677ff);
  border-color: var(--accent, #1677ff);
  box-shadow: none;
}

/* ----- Store bottom sheet (replaces the Kakao InfoWindow popup) ----------- */
/* The scrim + sheet are appended directly to <body> (outside #map-container's
   stacking context) so labels can never render above them. Fixed positioning
   is set inline in JS; component styling lives here. */
.store-sheet-grip {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border-subtle, #e5e5ea);
  margin: 0 auto 10px;
}

.store-sheet-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--color-text-secondary, #666);
  font-size: 20px;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
}
.store-sheet-close:hover {
  background: var(--bg-muted, #f6f8fb);
}

.store-sheet-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-sheet-gift {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft, #eef5ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.store-sheet-title-wrap {
  min-width: 0;
  flex: 1 1 auto;
}

.store-sheet-name {
  display: block;
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary, #243447);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Benefit hero band — the figure is the headline of the sheet. */
.store-sheet-benefit {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--accent-soft, #eef5ff);
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 12px;
}

/* Benefit headline line: [affiliate chip(s)] value on one flex row. Chips are
   fixed-width and sit left of the value; the value takes the remaining space
   and ellipsizes to 1 line. Wraps the value to a 2nd line only if chips+value
   overflow, so chips never crush the value. */
.store-sheet-benefit-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.store-sheet-benefit-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--accent, #1677ff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Inline affiliate chip — reuses .provider-theme provider-{slug} for the brand
   color; this modifier just makes it compact enough to sit beside the 17px
   value without dominating. Unthemed names fall back to the neutral
   .provider-theme base (grey). 🔗 intentionally dropped. */
.store-sheet-affil-chip {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 700;
  padding: 1px 6px;
  line-height: 1.45;
  max-width: 9.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-sheet-benefit-sub {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-secondary, #666);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-sheet-benefit-sub:empty {
  display: none;
}

.store-sheet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.store-sheet-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-muted, #f6f8fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary, #666);
}

.store-sheet-pill--addr {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* Distance, in the head row between the gift and the name. Mirrors the LIST's
   .planner-card-dist-chip: reddish underlined text + 📍 pin (🔍 in area mode),
   NOT a pill. Terse "650m"/"1.2km"; never truncates (only the name does), and
   it isn't tappable here so it skips the list chip's tap-target padding. */
.store-sheet-dist-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--color-accent, #a83a5f);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: rgba(168, 58, 95, 0.45);
  text-underline-offset: 2px;
  white-space: nowrap;
}
.store-sheet-dist-chip:empty {
  display: none;
}
.store-sheet-dist-chip .dist-pin {
  font-size: 0.78rem;
  line-height: 1;
}

/* Inline affiliate chips live in .store-sheet-benefit-line (see above); the
   standalone affiliate row was removed. This wrapper only groups the chips so
   the value stays one flex sibling. */
.store-sheet-affil-inline {
  display: contents;
}

.store-sheet-meta:empty {
  display: none;
}

.store-sheet-rule {
  height: 1px;
  background: var(--border-color, #e6ebf2);
  margin: 14px 0;
}

.store-sheet-cta {
  display: block;
}

.store-sheet-btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent, #1677ff);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.28);
  transition: transform .12s ease, box-shadow .15s ease;
}
.store-sheet-btn--primary:hover {
  transform: translateY(-1px);
}
.store-sheet-btn--primary:active {
  transform: translateY(1px);
}

.store-sheet-utils {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}

.store-sheet-util {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border: none;
  background: transparent;
  color: var(--color-text-secondary, #666);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.store-sheet-util:hover {
  background: var(--bg-muted, #f6f8fb);
}
.store-sheet-util svg {
  flex: 0 0 auto;
}

.store-sheet-util-sep {
  flex: 0 0 auto;
  align-self: center;
  width: 1px;
  height: 16px;
  background: var(--border-color, #e6ebf2);
}

/* Single-utility state: center "숨기기" so it never stretches/looks broken. */
.store-sheet-utils[data-count="1"] {
  justify-content: center;
}
.store-sheet-utils[data-count="1"] .store-sheet-util {
  flex: 0 0 auto;
}

/* Kill the blue tap-highlight rectangle on the sheet, scrim, and their buttons. */
#store-sheet,
#store-sheet-scrim,
#store-sheet button,
#store-sheet a {
  -webkit-tap-highlight-color: transparent;
}

/* Subheading separating no-coord ("위치 미확인") events at the list bottom. */
.planner-list-subheading {
  margin: 14px 16px 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-secondary, #888);
  letter-spacing: -0.01em;
}

/* Empty-state note rendered inside the map when nothing resolves. */
.map-empty-note {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 11;
  max-width: 88%;
  padding: 8px 14px;
  background: rgba(23, 55, 70, 0.9);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Reset pill ("N곳 표시 중 · 전체 보기") — top-center slot, shared with area search. */
.map-reset-pill {
  position: absolute;
  top: 12px;
  left: 12px;                 /* top-LEFT: area-search button owns top-center */
  z-index: 29;
  display: none;
  align-items: center;
  gap: 5px;
  height: 40px;               /* >=40px tap target */
  max-width: calc(100% - 24px);
  padding: 0 14px;
  border-radius: 999px;
  /* Tinted skin so it reads as a "filter/state" chip, distinct from the white
     "이 지역에서 검색" action button. */
  border: 1px solid rgba(22, 119, 255, 0.25);
  background: var(--accent-soft, #eef5ff);
  color: var(--accent, #1677ff);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.map-reset-pill .reset-ico {
  display: inline-flex;
  align-items: center;
  font-size: 0.95em;
  line-height: 1;
}
.map-reset-pill .reset-label {
  line-height: 1;
}
/* When the centered area-search button is visible, drop the pill one row so the
   two never overlap (the full label is always shown — no cryptic collapse). */
.map-reset-pill.is-below-area {
  top: 56px;
}

/* Undo snackbar — fixed dark bar at bottom-center with an 실행취소 action. */
.map-snackbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 92vw;
  padding: 11px 14px 11px 18px;
  background: #173746;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  opacity: 0;
  /* Never intercept taps unless actively shown — `display:flex` above overrides
     the [hidden] attribute, so without this the invisible bar sat at the bottom
     center swallowing clicks on the sheet's 숨기기 button. */
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.map-snackbar[hidden] {
  display: none;
}
.map-snackbar.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.map-snackbar-msg {
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-snackbar-undo {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: #7fc2ff;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 8px;
  cursor: pointer;
}
.map-snackbar-undo:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* All-hidden empty state — white card with a real reset button. */
.map-allhidden {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.map-allhidden.is-on {
  display: flex;
}
.map-allhidden-msg {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary, #243447);
  white-space: nowrap;
}
.map-allhidden-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: var(--accent, #1677ff);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.28);
}
.map-allhidden-btn:hover {
  filter: brightness(1.04);
}

.planner-primary-chip {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 800;
}

.planner-secondary-chip {
  min-height: 22px;
  padding: 0 7px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.96;
}

.planner-card-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.planner-card-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.22rem, 4vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.planner-card-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.planner-card-tag-strip {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  scroll-padding-right: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.planner-card-tag-strip::-webkit-scrollbar {
  display: none;
}

.planner-card-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 7px;
  background: #f5f7fb;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.favorites-list-group {
  gap: 12px;
}

.planner-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.planner-card-link {
  margin-left: 0;
}

.event-detail-shell {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
}

.event-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62.8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 100;
  flex: 0 0 auto;
}

.event-detail-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-detail-back-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.5;
  cursor: pointer;
}

.event-detail-back-link:hover {
  color: #0f64df;
}

.admin-edit-topbar-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-edit-body {
  padding: 20px 16px 8px;
}

.admin-edit-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
  position: sticky;
  bottom: 0;
  z-index: 90;
}

.admin-edit-action-bar .button-primary,
.admin-edit-action-bar .button-secondary {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.admin-edit-action-bar .button-secondary {
  margin-left: 24px;
}

.btn-share {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-share:active {
  background-color: var(--bg-muted);
}

.btn-share svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.event-detail-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.event-detail-date {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.event-detail-title {
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}

.event-detail-copy {
  display: grid;
  gap: 6px;
}

.event-detail-summary {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.event-detail-meta-list {
  display: grid;
  gap: 4px;
  padding-bottom: 2px;
}

.event-detail-meta-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.event-detail-meta-line.is-secondary {
  color: var(--text-secondary);
}

.event-detail-meta-label {
  flex: 0 0 26px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.event-detail-meta-value {
  min-width: 0;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.event-detail-meta-subvalue {
  color: var(--text-secondary);
  font-weight: 600;
}

.event-detail-source-line {
  color: inherit;
}

.event-detail-source-value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--accent);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 600;
}

.event-detail-source-line:hover .event-detail-source-value {
  text-decoration: underline;
}

.event-detail-tag-strip {
  padding-bottom: 2px;
}

.event-detail-body {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.event-detail-body p {
  margin: 0 0 8px;
}

.event-detail-body p:last-child {
  margin-bottom: 0;
}

.event-detail-body ul,
.event-detail-body ol {
  margin: 0 0 8px;
  padding-left: 20px;
}

.event-detail-body li {
  margin-bottom: 2px;
}

.event-detail-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

.event-detail-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 8px 0;
  display: block;
}

.event-detail-note {
  margin: 2px 0 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-line;
}

.event-detail-note-label {
  display: inline-block;
  margin-right: 6px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* 메타 스트립 (기간 · 원문) */
.event-detail-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--border-color);
}

.event-detail-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--bg-muted);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  min-width: 0;
  max-width: 100%;
  text-decoration: none;
}

.event-detail-meta-chip-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
}

.event-detail-meta-chip-sub {
  color: var(--text-muted);
}

.event-detail-meta-chip-link:hover {
  background: var(--bg-hover, #f0f0f0);
}

.event-detail-meta-chip-link .event-detail-source-value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--accent);
  font-size: 0.82rem;
  max-width: 200px;
}

/* 이용 조건 박스 */
.event-detail-terms {
  padding: 12px 14px;
  background: var(--bg-muted);
  border-left: 3px solid var(--border-color);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.event-detail-terms-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.event-detail-terms p {
  margin: 0;
}

.planner-empty-state {
  padding: 28px 20px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.planner-empty-state h3 {
  margin: 0;
}

.planner-empty-date {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.planner-empty-hint {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.55;
}

.planner-empty-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.planner-empty-actions .button-primary,
.planner-empty-actions .button-secondary,
.planner-empty-actions .button-ghost {
  width: auto;
  min-width: 188px;
}

.menu-strip,
.admin-subnav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-strip::-webkit-scrollbar,
.admin-subnav::-webkit-scrollbar {
  display: none;
}

.menu-strip {
  margin-top: 14px;
}

.admin-subnav {
  margin: 2px 0 4px;
}

.menu-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.18s ease;
}

.menu-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 119, 255, 0.22);
}

.page-card {
  padding: 14px;
}

.summary-card {
  display: grid;
  gap: 18px;
}

.agenda-hero {
  gap: 14px;
}

.compact-summary {
  gap: 14px;
}

.page-copy {
  display: grid;
  gap: 8px;
}

.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.section-heading h2,
.day-card-header h3 {
  margin: 2px 0 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.simple-heading {
  margin-bottom: 16px;
}

.list-summary-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

.stats-row,
.stats-grid {
  display: grid;
  gap: 12px;
}

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

.agenda-stats .stat-box {
  min-height: 96px;
}

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

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
}

.stat-box.large {
  min-height: 108px;
  justify-content: center;
}

.stat-box strong {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-box span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
}

.filter-form,
.form-stack,
.form-card {
  display: grid;
  gap: 16px;
}

.ux-principles,
.filter-chip-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compact-filter-shell {
  display: grid;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 2px 0 4px;
}

.compact-header {
  align-items: center;
}

.filter-disclosure {
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 12px 14px 14px;
}

.filter-disclosure summary {
  cursor: pointer;
  list-style: none;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.filter-disclosure summary::-webkit-details-marker {
  display: none;
}

.disclosure-form {
  margin-top: 14px;
}

.filter-helper {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.filter-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 80;
}

.filter-overlay.open {
  opacity: 1;
  visibility: visible;
}

.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  transform: translateX(-104%);
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 81;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
}

.filter-drawer.open {
  transform: translateX(0);
  box-shadow: 18px 0 38px rgba(15, 23, 42, 0.18);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-title-wrap {
  display: grid;
  gap: 4px;
}

.drawer-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.drawer-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.45;
}

.close-drawer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-muted);
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
}

.drawer-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.drawer-footer {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.drawer-footnote {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: center;
}

.form-section {
  display: grid;
}

.search-row,
.form-grid {
  display: grid;
  gap: 14px;
}

.search-row,
.form-grid.two {
  grid-template-columns: minmax(0, 1fr) 180px;
}

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

.field,
.field-group {
  display: grid;
  gap: 8px;
}

.field span,
.field-group legend {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--bg-muted);
  color: var(--text-primary);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(22, 119, 255, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.08);
}

textarea {
  resize: vertical;
}

.toggle-field {
  align-content: start;
}

.toggle-field input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
  box-shadow: none;
}

.field-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-section {
  display: grid;
  gap: 10px;
}

.filter-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.87rem;
}

.filter-title-row strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-option {
  position: relative;
}

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

.chip-option span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.18s ease;
}

.chip-option input:checked + span {
  background: var(--accent-soft);
  border-color: rgba(22, 119, 255, 0.3);
  color: var(--accent);
}

.button-row,
.summary-actions,
.bottom-actions,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.button-primary {
  background: #1677ff;
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 119, 255, 0.2);
}

.button-secondary {
  background: var(--bg-muted);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.button-ghost {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover,
.menu-link:hover {
  transform: translateY(-1px);
}

.list-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.list-summary {
  display: flex;
  align-items: center;
}

.total-count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.list-summary.is-filtered .total-count b {
  color: var(--accent);
}

.total-slash {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-left: 2px;
}

.segmented-control {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
}

.segment-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.segment-item.active {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.day-stack,
.deal-list-stack,
.admin-grid {
  display: grid;
  gap: 14px;
}

.calendar-day-stack {
  display: grid;
  gap: 14px;
}

.day-group-card {
  display: grid;
  gap: 10px;
}

.day-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 2px;
}

.day-group-title strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.day-group-title span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.list-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-item {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-top-info,
.chip-inline-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.top-stats {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.source-name {
  font-weight: 700;
  flex-shrink: 0;
}

.source-name.clickable-badge,
.provider-theme {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 7px;
  border-radius: 8px;
  border: 1px solid #dbe4ee;
  background: #f1f5f9;
  color: #475467;
  font-size: 0.75rem;
  line-height: 1.35;
}

.cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
  background-color: #f5f5f5;
  padding: 0 5px;
  border-radius: 6px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.mall-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0 5px;
  border-radius: 6px;
  border: 1px solid #ffe0b2;
  background-color: #fff3e0;
  color: #e67e22;
  flex-shrink: 0;
}

.stat-item {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-item {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(22, 119, 255, 0.12);
}

.post-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
}

.post-main-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.thumb-box {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-thumb {
  flex-direction: column;
  gap: 1px;
  text-align: center;
  padding: 8px 0;
}

.thumb-weekday,
.thumb-month {
  font-size: 0.72rem;
  font-weight: 700;
}

.date-thumb strong {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.info-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-row,
.price-time-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.shipping {
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 700;
  min-width: 0;
}

.post-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(22, 119, 255, 0.18);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.schedule-detail {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.post-bottom-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.time,
.bottom-inline {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
}

.time-label {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.detail-link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
}

.post-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.board-list {
  gap: 12px;
}

.board-post {
  gap: 10px;
}

.board-toolbar-block {
  display: grid;
  gap: 10px;
  padding: 2px 2px 0;
}

.board-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.board-filter-segments {
  flex-shrink: 0;
}

.board-filter-segments .segment-item {
  min-width: 94px;
  gap: 4px;
  text-decoration: none;
}

.board-filter-label,
.board-filter-count {
  line-height: 1;
}

.board-filter-count {
  font-size: 0.78rem;
  font-weight: 700;
}

.board-auth-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.board-auth-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(127, 192, 183, 0.18);
  border: 1px solid rgba(79, 154, 144, 0.24);
  color: #1c554f;
  font-size: 0.78rem;
  font-weight: 700;
}

.board-auth-badge.is-muted {
  background: var(--bg-muted);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.board-auth-link {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.board-auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.board-post-card {
  padding: 0;
  overflow: hidden;
}

.board-post-open-link {
  display: block;
  padding: 14px 14px 12px;
}

.board-post-open-link:hover {
  background: rgba(15, 23, 42, 0.02);
}

.board-post-summary {
  display: grid;
  gap: 10px;
}

.board-post-title {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--text-primary);
  font-size: 1.04rem;
  line-height: 1.4;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.board-post-title-text {
  min-width: 0;
}

.board-post-comment-count {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.board-post-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.board-post-reactions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.board-reaction-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.board-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 40;
}

.board-detail-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(640px, 100vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 41;
  box-shadow: -20px 0 48px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.board-detail-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.board-detail-panel.open {
  transform: translateX(0);
}

body.board-detail-open {
  overflow: hidden;
}

.board-detail-panel-content {
  flex: 1;
  min-height: 0;
}

.board-detail-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.board-detail-header {
  padding: calc(14px + env(safe-area-inset-top)) 18px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

.board-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.board-detail-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 18px calc(28px + env(safe-area-inset-bottom));
  display: grid;
  gap: 20px;
}

.board-detail-main,
.board-detail-comments-section,
.board-detail-stack {
  display: grid;
  gap: 12px;
}

.board-detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.board-detail-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.26rem;
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.board-chip-inline {
  gap: 6px;
}

.board-post-body {
  display: grid;
  gap: 8px;
}

.board-post-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.board-meta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.board-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  background: rgba(22, 119, 255, 0.08);
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 700;
}

.board-meta-pill.board-meta-muted {
  border-color: var(--border-color);
  background: #fff;
  color: var(--text-secondary);
}

.board-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.board-source-row {
  display: flex;
  align-items: center;
}

.board-source-link {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.board-detail-comments-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.board-detail-comments-heading strong {
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.board-thread-form,
.board-comment-reply-form {
  display: grid;
}

.board-thread-form {
  gap: 12px;
}

.board-comment-reply-form {
  gap: 10px;
}

.board-comment-reply-form[hidden] {
  display: none !important;
}

.board-thread-form textarea,
.board-comment-reply-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-primary);
  resize: vertical;
}

.board-thread-form textarea {
  min-height: 104px;
}

.board-comment-reply-form textarea {
  min-height: 72px;
}

.board-thread-form textarea:focus,
.board-comment-reply-form textarea:focus {
  outline: none;
  border-color: rgba(22, 119, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.08);
}

.board-thread-form-actions,
.board-comment-reply-actions {
  display: flex;
  justify-content: flex-end;
}

.board-thread-list {
  display: grid;
}

.board-thread-comment {
  padding-left: 0;
}

.board-thread-children {
  display: grid;
  gap: 0;
  margin-top: 6px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(148, 163, 184, 0.24);
}

.board-thread-comment-body {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 0;
}

.board-thread-comment:first-child .board-thread-comment-body {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.board-thread-children > .board-thread-comment:first-child > .board-thread-comment-body {
  border-top: 0;
  padding-top: 2px;
}

.board-thread-comment.is-reply .board-thread-comment-body {
  padding: 12px 0;
}

.board-thread-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.board-thread-meta-left,
.board-thread-meta-right,
.board-comment-vote-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.board-thread-meta-left {
  flex-wrap: wrap;
}

.board-thread-meta-right {
  flex-shrink: 0;
  margin-left: auto;
}

.board-comment-author {
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 500;
}

.board-comment-reply-target,
.board-comment-time {
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 500;
}

.board-comment-vote-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.board-comment-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 22px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.board-comment-action:hover {
  color: var(--text-secondary);
}

.board-comment-action:disabled {
  opacity: 0.58;
  cursor: wait;
}

.board-comment-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  line-height: 1;
}

.board-comment-action-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-comment-action-count {
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}

.board-comment-action.is-active.is-positive {
  color: var(--text-secondary);
}

.board-comment-action.is-active.is-negative {
  color: var(--text-secondary);
}

.board-comment-action.is-active .board-comment-action-count {
  color: var(--text-primary);
  font-weight: 700;
}

.board-comment-content-line {
  margin-top: 8px;
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.68;
}

.board-comment-body-text {
  color: var(--text-primary);
  font-size: inherit;
  line-height: inherit;
  white-space: pre-wrap;
}

.board-comment-inline-separator {
  display: inline;
  margin: 0 6px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.board-comment-reply-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.board-comment-reply-form {
  margin-top: 10px;
  padding-left: 0;
}

.board-comment-reply-submit {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  border-color: var(--border-color);
  background: #fff;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.board-comment-reply-submit:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.board-comment-empty {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
}

.board-login-prompt {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(22, 119, 255, 0.24);
  background: rgba(22, 119, 255, 0.05);
}

.board-login-prompt p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.5;
}

.board-comment-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
}

.board-comment-page-link,
.board-comment-page-state {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.board-comment-page-link.is-disabled {
  opacity: 0.4;
}

.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;
}

.field-note {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.support-card {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.radio-grid .chip-option {
  flex: 1 1 140px;
}

.schedule-detail-panel[hidden] {
  display: none !important;
}

.provider-chip {
  font-weight: 700;
}

.chip-option input:checked + span.provider-chip.provider-shinhan-card {
  background: rgba(0, 70, 255, 0.08);
  border-color: rgba(0, 70, 255, 0.16);
  color: var(--brand-shinhan-primary);
}

.chip-option input:checked + span.provider-chip.provider-samsung-card {
  background: rgba(20, 40, 160, 0.08);
  border-color: rgba(20, 40, 160, 0.16);
  color: var(--brand-samsung-primary);
}

.chip-option input:checked + span.provider-chip.provider-kb-card {
  background: #fff6d7;
  border-color: rgba(255, 188, 0, 0.4);
  color: #4f463a;
}

.chip-option input:checked + span.provider-chip.provider-hyundai-card {
  background: #111827;
  border-color: rgba(17, 24, 39, 0.18);
  color: #ffffff;
}

.chip-option input:checked + span.provider-chip.provider-lotte-card {
  background: rgba(44, 42, 38, 0.08);
  border-color: rgba(44, 42, 38, 0.16);
  color: var(--brand-lotte-primary);
}

.chip-option input:checked + span.provider-chip.provider-woori-card {
  background: rgba(0, 103, 172, 0.1);
  border-color: rgba(0, 103, 172, 0.18);
  color: var(--brand-woori-primary);
}

.chip-option input:checked + span.provider-chip.provider-hana-card {
  background: #e8f8f4;
  border-color: rgba(0, 145, 120, 0.24);
  color: var(--brand-hana-primary);
}

.chip-option input:checked + span.provider-chip.provider-nh-card {
  background: rgba(0, 102, 179, 0.1);
  border-color: rgba(0, 102, 179, 0.2);
  color: var(--brand-nh-primary);
}

.chip-option input:checked + span.provider-chip.provider-bc-card {
  background: #fff1f3;
  border-color: rgba(250, 50, 70, 0.2);
  color: var(--brand-bc-primary);
}

.chip-option input:checked + span.provider-chip.provider-skt {
  background: rgba(226, 35, 26, 0.12);
  border-color: rgba(226, 35, 26, 0.22);
  color: var(--brand-skt);
}

.chip-option input:checked + span.provider-chip.provider-kt {
  background: #f0f1f2;
  border-color: rgba(16, 24, 32, 0.16);
  color: #111827;
}

.chip-option input:checked + span.provider-chip.provider-lgu {
  background: rgba(230, 0, 126, 0.1);
  border-color: rgba(230, 0, 126, 0.18);
  color: var(--brand-lgu);
}

.chip-option input:checked + span.provider-chip.provider-starbucks {
  background: rgba(0, 112, 74, 0.12);
  border-color: rgba(0, 112, 74, 0.2);
  color: var(--brand-starbucks);
}

.chip-option input:checked + span.provider-chip.provider-cgv {
  background: rgba(231, 26, 15, 0.11);
  border-color: rgba(231, 26, 15, 0.2);
  color: var(--brand-cgv);
}

.chip-option input:checked + span.provider-chip.provider-oliveyoung {
  background: rgba(154, 202, 60, 0.15);
  border-color: rgba(154, 202, 60, 0.28);
  color: #40511d;
}

.provider-soft.provider-shinhan-card {
  background: rgba(0, 70, 255, 0.1);
  border-color: rgba(0, 70, 255, 0.18);
  color: var(--brand-shinhan-primary);
}

.provider-soft.provider-samsung-card {
  background: rgba(20, 40, 160, 0.1);
  border-color: rgba(20, 40, 160, 0.18);
  color: var(--brand-samsung-primary);
}

.provider-soft.provider-hyundai-card {
  background: #f3f4f6;
  border-color: rgba(17, 24, 39, 0.12);
  color: #111827;
}

.provider-soft.provider-lotte-card {
  background: rgba(44, 42, 38, 0.08);
  border-color: rgba(44, 42, 38, 0.16);
  color: var(--brand-lotte-primary);
}

.provider-soft.provider-woori-card {
  background: rgba(0, 103, 172, 0.1);
  border-color: rgba(0, 103, 172, 0.18);
  color: var(--brand-woori-primary);
}

.provider-theme.provider-shinhan-card,
.chip-option input:checked + span.provider-shinhan-card {
  background: var(--brand-shinhan-primary);
  border-color: var(--brand-shinhan-primary);
  color: #fff;
}

.provider-theme.provider-samsung-card,
.chip-option input:checked + span.provider-samsung-card {
  background: var(--brand-samsung-primary);
  border-color: var(--brand-samsung-primary);
  color: #fff;
}

.provider-theme.provider-hyundai-card,
.chip-option input:checked + span.provider-hyundai-card {
  background: var(--brand-hyundai-primary);
  border-color: var(--brand-hyundai-primary);
  color: #fff;
}

.provider-theme.provider-lotte-card,
.chip-option input:checked + span.provider-lotte-card {
  background: var(--brand-lotte-primary);
  border-color: var(--brand-lotte-primary);
  color: #fff;
}

.provider-theme.provider-woori-card,
.chip-option input:checked + span.provider-woori-card {
  background: var(--brand-woori-primary);
  border-color: var(--brand-woori-primary);
  color: #fff;
}

.provider-theme.provider-kb-card,
.provider-soft.provider-kb-card,
.chip-option input:checked + span.provider-kb-card {
  background: #fff6d7;
  border-color: var(--brand-kb-primary);
  color: #1f1f1f;
}

.provider-theme.provider-hana-card,
.provider-soft.provider-hana-card,
.chip-option input:checked + span.provider-hana-card {
  background: #e8f8f4;
  border-color: rgba(0, 145, 120, 0.26);
  color: var(--brand-hana-primary);
}

.provider-theme.provider-nh-card,
.provider-soft.provider-nh-card,
.chip-option input:checked + span.provider-nh-card {
  background: rgba(0, 102, 179, 0.1);
  border-color: rgba(0, 102, 179, 0.2);
  color: var(--brand-nh-primary);
}

.provider-theme.provider-bc-card,
.provider-soft.provider-bc-card,
.chip-option input:checked + span.provider-bc-card {
  background: #fff1f3;
  border-color: rgba(250, 50, 70, 0.2);
  color: var(--brand-bc-primary);
}

.provider-theme.provider-skt,
.provider-soft.provider-skt,
.chip-option input:checked + span.provider-skt {
  background: rgba(226, 35, 26, 0.12);
  border-color: rgba(226, 35, 26, 0.22);
  color: var(--brand-skt);
}

.provider-theme.provider-kt,
.provider-soft.provider-kt,
.chip-option input:checked + span.provider-kt {
  background: #f0f1f2;
  border-color: rgba(16, 24, 32, 0.16);
  color: var(--brand-kt);
}

.provider-theme.provider-starbucks,
.provider-soft.provider-starbucks,
.chip-option input:checked + span.provider-starbucks {
  background: rgba(0, 112, 74, 0.12);
  border-color: rgba(0, 112, 74, 0.2);
  color: var(--brand-starbucks);
}

.provider-theme.provider-cgv,
.provider-soft.provider-cgv,
.chip-option input:checked + span.provider-cgv {
  background: rgba(231, 26, 15, 0.11);
  border-color: rgba(231, 26, 15, 0.2);
  color: var(--brand-cgv);
}

.provider-theme.provider-oliveyoung,
.provider-soft.provider-oliveyoung,
.chip-option input:checked + span.provider-oliveyoung {
  background: rgba(154, 202, 60, 0.15);
  border-color: rgba(154, 202, 60, 0.28);
  color: #40511d;
}

/* 네이버쇼핑 — slug: naver-shopping */
.provider-theme.provider-naver-shopping,
.provider-soft.provider-naver-shopping,
.chip-option input:checked + span.provider-naver-shopping {
  background: var(--brand-naver-shopping);
  border-color: var(--brand-naver-shopping);
  color: #fff;
}

.provider-theme.provider-etc,
.provider-soft.provider-etc,
.chip-option input:checked + span.provider-etc {
  background: #f1f5f9;
  border-color: #dbe4ee;
  color: #475467;
}

/* 파스쿠찌 — slug: pascucci */
.provider-theme.provider-pascucci,
.provider-soft.provider-pascucci,
.chip-option input:checked + span.provider-pascucci {
  background: rgba(139, 94, 60, 0.12);
  border-color: rgba(139, 94, 60, 0.22);
  color: var(--brand-pascucci);
}

/* 10억커피 — slug: 10billioncoffee */
.provider-theme.provider-10billioncoffee,
.provider-soft.provider-10billioncoffee,
.chip-option input:checked + span.provider-10billioncoffee {
  background: rgba(92, 61, 30, 0.12);
  border-color: rgba(92, 61, 30, 0.22);
  color: var(--brand-10billioncoffee);
}

/* 쉐이크쉑 — slug: shakeshack */
.provider-theme.provider-shakeshack,
.provider-soft.provider-shakeshack,
.chip-option input:checked + span.provider-shakeshack {
  background: rgba(117, 178, 47, 0.13);
  border-color: rgba(117, 178, 47, 0.25);
  color: var(--brand-shakeshack);
}

/* 뚜레쥬르 — slug: touslesjours */
.provider-theme.provider-touslesjours,
.provider-soft.provider-touslesjours,
.chip-option input:checked + span.provider-touslesjours {
  background: rgba(192, 57, 43, 0.11);
  border-color: rgba(192, 57, 43, 0.22);
  color: var(--brand-touslesjours);
}

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

.day-card {
  padding: 18px;
}

.day-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.day-card-header span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.accordion-stack {
  display: grid;
  gap: 10px;
}

.event-accordion {
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: var(--bg-muted);
  overflow: hidden;
}

.event-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.event-summary::-webkit-details-marker {
  display: none;
}

.event-summary-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.event-summary-title {
  display: block;
  font-size: 0.98rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.event-summary-sub {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.event-summary-side {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  flex-shrink: 0;
  max-width: 42%;
}

.event-panel {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 800;
}

.mini-pill.accent {
  background: var(--accent-soft);
  border-color: rgba(22, 119, 255, 0.18);
  color: var(--accent);
}

.deal-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
}

.deal-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.deal-summary {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.93rem;
}

.deal-meta-grid {
  display: grid;
  gap: 8px;
}

.meta-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.meta-label {
  flex-shrink: 0;
  width: 68px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.meta-value {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-pill,
.tag-pill,
.metric-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill {
  background: #edf2f7;
  color: #475467;
}

.status-pill.published,
.status-pill.auto-published {
  background: rgba(18, 183, 106, 0.12);
  color: var(--success);
}

.status-pill.pending,
.status-pill.under-review,
.status-pill.community-qualified {
  background: rgba(22, 119, 255, 0.12);
  color: var(--accent);
}

.status-pill.expired,
.status-pill.hidden,
.status-pill.rejected,
.status-pill.duplicate {
  background: rgba(240, 68, 56, 0.12);
  color: var(--danger);
}

.tag-pill {
  background: var(--accent-soft);
  color: var(--accent);
}

.metric-pill {
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.empty-state {
  text-align: center;
  padding: 34px 24px;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.empty-state p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.empty-bookmark-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
  font-family: var(--hotdeal-font-stack);
}

.empty-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 15px;
  color: #f1c40f;
  display: inline-block;
  animation: swing 2s infinite ease-in-out;
}

.empty-bookmark-state h3 {
  font-size: 1.2em;
  color: var(--text-primary);
  margin: 0 0 15px;
  letter-spacing: 0;
}

.empty-desc {
  list-style: none;
  padding: 0;
  margin: 0 auto 25px;
  text-align: left;
  max-width: 320px;
  color: var(--text-muted);
  font-size: 0.85em;
  line-height: 1.6;
}

.empty-desc li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
  word-break: keep-all;
}

.empty-desc li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: 700;
}

@keyframes swing {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(5deg); }
  40% { transform: rotate(-5deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.go-list-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.flash-stack {
  display: grid;
  gap: 10px;
}

.flash {
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  font-size: 0.92rem;
  font-weight: 700;
}

.flash-success {
  background: rgba(18, 183, 106, 0.08);
  color: #0f8b52;
}

.flash-error {
  background: rgba(240, 68, 56, 0.08);
  color: #c4322b;
}

.flash-warning {
  background: rgba(247, 144, 9, 0.1);
  color: #b76100;
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.holiday-toolbar-form {
  flex: 1 1 260px;
}

.holiday-toolbar-actions {
  width: auto;
}

.holiday-sync-form {
  display: grid;
  gap: 8px;
  align-items: end;
}

.table-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.table-action-row form {
  margin: 0;
}

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

.simple-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.simple-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.simple-list strong {
  font-size: 0.94rem;
  line-height: 1.5;
}

.login-card {
  max-width: 520px;
  margin: 0 auto;
}

.login-entry-card {
  display: grid;
  gap: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.92));
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-family: "SF Pro Display", "SF Pro Text", "Pretendard Variable", "SUIT Variable", "Noto Sans KR", sans-serif;
}

.login-entry-card::before,
.login-entry-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.login-entry-card::before {
  top: -84px;
  right: -28px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle at center, rgba(250, 225, 0, 0.2), rgba(250, 225, 0, 0));
}

.login-entry-card::after {
  left: -54px;
  bottom: -118px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(3, 199, 90, 0.12), rgba(3, 199, 90, 0));
}

.login-hero-panel,
.login-action-panel {
  display: grid;
  align-content: start;
}

.login-hero-panel {
  gap: 20px;
}

.login-action-panel {
  gap: 16px;
}

.login-hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.login-copy-block {
  gap: 14px;
}

.login-entry-card .section-kicker {
  color: #5b7397;
  letter-spacing: 0.18em;
}

.login-entry-card .section-title {
  max-width: 10ch;
  font-size: clamp(1.95rem, 7vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.login-entry-card .section-copy {
  max-width: 48ch;
  color: #5d697c;
  font-size: 0.97rem;
  line-height: 1.78;
}

.login-flow-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: #42526b;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

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

.login-benefit-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.login-benefit-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.login-benefit-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.6;
}

.login-provider-surface {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.login-provider-stack {
  display: grid;
  gap: 12px;
}

.login-provider-btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.login-provider-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.login-provider-btn.provider-kakao {
  border-color: rgba(244, 210, 21, 0.44);
  background: linear-gradient(135deg, rgba(255, 248, 210, 0.98), rgba(255, 255, 255, 0.94));
}

.login-provider-btn.provider-naver {
  border-color: rgba(3, 199, 90, 0.22);
  background: linear-gradient(135deg, rgba(240, 255, 246, 0.98), rgba(255, 255, 255, 0.94));
}

.login-provider-btn.is-disabled {
  opacity: 1;
  background: rgba(248, 250, 252, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.login-provider-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.login-provider-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.login-provider-btn.provider-kakao .login-provider-mark {
  background: #fee500;
  color: #1a1a1a;
}

.login-provider-btn.provider-naver .login-provider-mark {
  background: #03c75a;
  color: #fff;
}

.login-provider-btn.is-disabled .login-provider-mark {
  background: #e5e7eb;
  color: #64748b;
}

.login-provider-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.login-provider-label {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.login-provider-copy {
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.55;
}

.login-provider-arrow {
  color: #94a3b8;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
}

.login-provider-btn.provider-kakao .login-provider-arrow {
  color: rgba(26, 26, 26, 0.54);
}

.login-provider-btn.provider-naver .login-provider-arrow {
  color: rgba(3, 130, 61, 0.75);
}

.login-provider-btn.is-disabled .login-provider-arrow {
  color: #cbd5e1;
}

.login-helper-note {
  margin: 0;
  color: #5b677a;
  font-size: 0.84rem;
  line-height: 1.6;
}

.login-status-box {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 247, 255, 0.84));
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.login-status-eyebrow {
  color: #5b7aa8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.login-status-box strong {
  color: #16365c;
  font-size: 1.12rem;
  font-weight: 800;
}

.login-status-box span {
  color: #5d697c;
  font-size: 0.92rem;
  line-height: 1.65;
}

.login-alias-panel {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.login-alias-label {
  color: #5b7aa8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.login-alias-panel strong {
  color: #16365c;
  font-size: 1rem;
}

.login-alias-panel p {
  margin: 0;
  color: #5d697c;
  font-size: 0.84rem;
  line-height: 1.6;
}

.login-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.login-entry-actions .button-primary,
.login-entry-actions .button-secondary,
.login-entry-actions .button-ghost {
  width: auto;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
}

.login-entry-actions .button-primary {
  background: linear-gradient(180deg, #1f2937, #0f172a);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.login-entry-actions .button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.login-entry-actions .button-ghost {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(148, 163, 184, 0.18);
}

@media (min-width: 621px) {
  .login-entry-card {
    padding: 30px;
  }

  .login-entry-card .section-copy {
    max-width: 42ch;
  }

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

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

.inline-filter-form {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  body[data-page-kind="login"] .header-top-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  body[data-page-kind="login"] .header-side-badges {
    width: 100%;
  }

  body[data-page-kind="login"] .header-badge {
    width: fit-content;
    max-width: 100%;
  }

  .page-shell {
    padding-top: calc(20px + env(safe-area-inset-top));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-section {
    padding: 18px 20px;
  }

  .board-app-header {
    padding: 18px 20px;
  }

  .calendar-app-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .calendar-app-header .main-title {
    font-size: 1.12em;
  }

  .title-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .title-badge svg {
    width: 17px;
    height: 17px;
  }

  .page-card {
    padding: 12px;
    border-radius: 20px;
  }

  .section-heading,
  .day-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-top-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .board-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .board-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .board-header-actions .button-primary,
  .board-header-actions .button-secondary,
  .board-header-actions .button-ghost {
    width: auto;
  }

  .header-calendar-actions {
    gap: 7px;
  }

  .header-register-link {
    min-width: 58px;
    min-height: 38px;
    padding: 6px 8px;
  }

  .header-register-kicker {
    font-size: 0.6rem;
  }

  .header-register-main {
    font-size: 0.86rem;
  }

  .header-right-icons {
    gap: 2px;
    margin-right: 0;
  }

  .header-auth-row {
    align-items: flex-start;
    gap: 8px;
  }

  .header-auth-badge,
  .header-auth-copy,
  .header-auth-link {
    font-size: 0.74rem;
  }

  .stats-row,
  .stats-grid,
  .admin-grid,
  .search-row,
  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .button-row,
  .summary-actions,
  .bottom-actions,
  .metric-row {
    width: 100%;
  }

  .button-primary,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .board-header-actions .button-primary,
  .board-header-actions .button-secondary,
  .board-header-actions .button-ghost {
    width: auto;
  }

  .planner-empty-actions .button-primary,
  .planner-empty-actions .button-secondary,
  .planner-empty-actions .button-ghost {
    width: auto;
  }

  .header-search-row {
    gap: 0;
  }

  .header-search-row .integrated-search-bar {
    min-width: 0;
  }

  .calendar-header-actions {
    justify-content: flex-end;
  }

  .top-utility-row {
    justify-content: space-between;
    align-items: flex-start;
  }

  .calendar-header-actions .button-primary,
  .calendar-header-actions .button-secondary,
  .calendar-header-actions .button-ghost,
  .top-utility-row .button-primary,
  .top-utility-row .button-secondary,
  .top-utility-row .button-ghost,
  .calendar-header-actions .header-board-link {
    width: auto;
    margin-left: auto;
  }

  .planner-calendar-card {
    top: 0;
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px 22px 8px;
    border-radius: 0;
  }

  .planner-calendar-toolbar,
  .planner-event-top,
  .planner-event-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .planner-calendar-toolbar {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .planner-calendar-actions {
    gap: 5px;
    flex-shrink: 0;
    flex-wrap: nowrap;
  }

  .calendar-nav-btn,
  .calendar-today-btn,
  .calendar-view-toggle {
    min-height: 30px;
    border-radius: 10px;
  }

  .calendar-nav-btn {
    width: 30px;
  }

  .calendar-today-btn,
  .calendar-view-toggle {
    padding: 0 9px;
  }

  .planner-weekday-row,
  .planner-week-row {
    gap: 2px;
  }

  .planner-day-cell {
    min-height: 62px;
    padding: 8px 6px;
    border-radius: 16px;
  }

  .planner-day-number {
    font-size: 0.95rem;
  }

  .planner-day-meta {
    font-size: 0.66rem;
  }

  .planner-event-card-link-body {
    gap: 7px;
    padding: 0;
  }

  .planner-event-card-content-link {
    padding-top: 0;
  }

  .planner-card-top-row {
    gap: 6px;
    padding: 0;
  }

  .planner-card-chip-row {
    gap: 4px;
  }

  .favorite-toggle-btn {
    width: 26px;
    height: 26px;
  }

  .planner-card-title {
    font-size: 1.14rem;
  }

  .planner-card-desc {
    font-size: 0.86rem;
  }

  .planner-schedule-chip {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .planner-primary-chip {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .planner-secondary-chip,
  .planner-card-tag {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .planner-card-tag-strip {
    margin-right: -4px;
    padding-right: 4px;
  }

  .inline-filter-form {
    align-items: stretch;
  }

  .board-toolbar-row {
    align-items: stretch;
  }

  .board-filter-segments {
    width: 100%;
    justify-content: flex-start;
  }

  .board-filter-segments .segment-item {
    flex: 1 1 0;
  }

  .board-post-meta-row {
    align-items: flex-start;
  }

  .board-detail-scroll {
    padding: 16px 16px calc(24px + env(safe-area-inset-bottom));
  }

  .board-thread-meta-line {
    align-items: flex-start;
    gap: 8px;
  }

  .board-thread-form-actions .button-primary {
    width: 100%;
  }

  .board-comment-reply-actions .board-comment-reply-submit {
    width: auto;
  }

  .board-comment-vote-form {
    gap: 10px;
  }

  .board-thread-meta-right {
    margin-left: 0;
  }

  .login-entry-actions {
    flex-direction: column;
  }

  .login-entry-actions .button-primary,
  .login-entry-actions .button-secondary,
  .login-entry-actions .button-ghost {
    width: 100%;
  }

  .login-entry-card {
    gap: 18px;
    padding: 20px;
    border-radius: 26px;
  }

  .login-hero-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-entry-card .section-title {
    max-width: none;
    font-size: clamp(1.58rem, 8.8vw, 2.12rem);
    line-height: 1.1;
  }

  .login-entry-card .section-copy {
    max-width: none;
  }

  .login-provider-surface {
    padding: 14px;
    border-radius: 22px;
  }

  .login-provider-btn {
    padding: 16px;
    border-radius: 20px;
  }

  .login-provider-topline {
    gap: 12px;
  }

  .login-provider-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.96rem;
  }

  .filter-drawer {
    width: min(90vw, 360px);
  }

  .list-info-row {
    flex-direction: column;
    align-items: stretch;
  }

  .segmented-control {
    width: 100%;
    justify-content: space-between;
  }

  .segment-item {
    flex: 1;
  }

  .top-stats {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .thumb-box {
    width: 64px;
    height: 64px;
  }

  .date-thumb strong {
    font-size: 1.2rem;
  }

  .post-bottom-info {
    align-items: flex-start;
  }

  .detail-link {
    margin-left: 0;
  }

  .event-summary {
    flex-direction: column;
  }

  .event-summary-side {
    justify-content: flex-start;
    max-width: 100%;
  }

  .meta-row {
    flex-direction: column;
    gap: 4px;
  }

  .meta-label {
    width: auto;
  }
}

body[data-page-kind="login"] {
  background: #f5f5f7;
}

body[data-page-kind="login"] {
  background: #ffffff;
}

body[data-page-kind="login"] .page-shell {
  min-height: 100vh;
  min-height: 100svh;
  padding: 32px 0;
  padding-top: calc(56px + env(safe-area-inset-top));
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
}

body[data-page-kind="login"] .app-shell {
  width: 100%;
  max-width: 396px;
  padding: 0 18px;
  box-sizing: border-box;
  margin: 0 auto;
}

body[data-page-kind="login"] .header-section {
  display: none;
}

body[data-page-kind="login"] .content-stack {
  gap: 0;
}

body[data-page-kind="login"] .page-card,
body[data-page-kind="login"] .flash {
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page-kind="login"] .login-entry-card {
  display: grid;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Pretendard Variable", "SUIT Variable", "Noto Sans KR", "SF Pro Display", "SF Pro Text", sans-serif;
}

body[data-page-kind="login"] .login-entry-card::before,
body[data-page-kind="login"] .login-entry-card::after {
  content: none;
  display: none;
}

body[data-page-kind="login"] .login-copy-block {
  gap: 0;
}

body[data-page-kind="login"] .section-kicker,
body[data-page-kind="login"] .section-copy,
body[data-page-kind="login"] .login-status-eyebrow,
body[data-page-kind="login"] .login-helper-note,
body[data-page-kind="login"] .login-benefit-list,
body[data-page-kind="login"] .login-flow-chip,
body[data-page-kind="login"] .login-alias-panel,
body[data-page-kind="login"] .login-provider-arrow,
body[data-page-kind="login"] .login-provider-copy,
body[data-page-kind="login"] .login-provider-chevron {
  display: none;
}

body[data-page-kind="login"] .section-title {
  margin: 0;
  color: #111111;
  max-width: none;
  font-size: clamp(2.05rem, 11vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

body[data-page-kind="login"] .login-provider-stack {
  display: grid;
  gap: 10px;
  width: 100%;
  grid-template-columns: 1fr;
}

body[data-page-kind="login"] .login-provider-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  box-shadow: none;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

body[data-page-kind="login"] .login-provider-btn:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(0.98);
}

body[data-page-kind="login"] .login-provider-btn:focus-visible {
  outline: 2px solid #1d1d1f;
  outline-offset: 2px;
}

body[data-page-kind="login"] .login-provider-btn.provider-kakao {
  background: #fee500;
  color: rgba(25, 25, 25, 0.92);
}

body[data-page-kind="login"] .login-provider-btn.provider-naver {
  background: #03a94d;
  color: #ffffff;
}

body[data-page-kind="login"] .login-provider-btn.is-disabled {
  border: 1px solid #e5e5ea;
  background: #f5f5f7;
  color: #8e8e93;
  opacity: 0.7;
}

body[data-page-kind="login"] .login-provider-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

body[data-page-kind="login"] .login-provider-btn.provider-naver .login-provider-icon {
  width: 26px;
  height: 26px;
}

body[data-page-kind="login"] .login-provider-icon img,
body[data-page-kind="login"] .login-provider-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

body[data-page-kind="login"] .login-provider-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
}

body[data-page-kind="login"] .login-provider-btn.provider-kakao .login-provider-mark {
  background: #fee500;
  color: #191919;
}

body[data-page-kind="login"] .login-provider-btn.provider-naver .login-provider-mark {
  background: #03a94d;
  color: #ffffff;
}

body[data-page-kind="login"] .login-provider-btn.is-disabled .login-provider-mark {
  background: #e5e5ea;
  color: #8e8e93;
}

body[data-page-kind="login"] .login-provider-label {
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

body[data-page-kind="login"] .login-status-box {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

body[data-page-kind="login"] .login-status-box strong {
  color: #111111;
  font-size: 1.05rem;
  font-weight: 700;
}

body[data-page-kind="login"] .login-status-box span {
  color: #6e6e73;
  font-size: 0.94rem;
  line-height: 1.45;
}

body[data-page-kind="login"] .login-entry-actions {
  display: grid;
  gap: 8px;
}

body[data-page-kind="login"] .login-entry-actions .button-primary,
body[data-page-kind="login"] .login-entry-actions .button-secondary,
body[data-page-kind="login"] .login-entry-actions .button-ghost {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  box-shadow: none;
  transform: none;
}

body[data-page-kind="login"] .login-entry-actions .button-primary {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

body[data-page-kind="login"] .login-entry-actions .button-secondary,
body[data-page-kind="login"] .login-entry-actions .button-ghost {
  background: #f5f5f7;
  border-color: #f5f5f7;
  color: #111111;
}

body[data-page-kind="login"] .login-entry-actions .button-primary:hover,
body[data-page-kind="login"] .login-entry-actions .button-secondary:hover,
body[data-page-kind="login"] .login-entry-actions .button-ghost:hover {
  transform: none;
  box-shadow: none;
}

body[data-page-kind="login"] .login-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 2px;
  color: #8e8e93;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (max-width: 720px) {
  body[data-page-kind="login"] .page-shell {
    padding: 28px 0;
    padding-top: calc(52px + env(safe-area-inset-top));
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  body[data-page-kind="login"] .app-shell {
    max-width: none;
  }

  body[data-page-kind="login"] .section-title {
    font-size: clamp(1.95rem, 11vw, 2.3rem);
  }
}

body[data-page-kind="login"] {
  background: #f4f6f8;
  overflow-x: hidden;
}

body[data-page-kind="login"] .page-shell {
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  padding: 30px 16px;
  padding-top: calc(34px + env(safe-area-inset-top));
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  background: transparent;
}

body[data-page-kind="login"] .app-shell {
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
  margin: 0 auto;
  background: transparent;
}

body[data-page-kind="login"] .header-section {
  display: none;
}

body[data-page-kind="login"] .content-stack {
  gap: 0;
}

body[data-page-kind="login"] .page-card,
body[data-page-kind="login"] .flash {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page-kind="login"] .login-entry-card {
  display: grid;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  font-family: "Pretendard Variable", "SUIT Variable", "Noto Sans KR", "SF Pro Display", "SF Pro Text", sans-serif;
}

body[data-page-kind="login"] .login-entry-card::before,
body[data-page-kind="login"] .login-entry-card::after {
  content: none;
  display: none;
}

body[data-page-kind="login"] .login-block-card {
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
}

body[data-page-kind="login"] .login-title-card {
  display: grid;
  gap: 10px;
  background: #ffffff;
}

body[data-page-kind="login"] .login-title-heading {
  margin: 0;
  color: #16233b;
  font-size: clamp(1.62rem, 5vw, 1.88rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 800;
}

body[data-page-kind="login"] .login-recent-chip {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #ffd6d0;
  background: #fff3f1;
  color: #d92d20;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body[data-page-kind="login"] .login-recent-chip[hidden] {
  display: none;
}

body[data-page-kind="login"] .login-recent-chip strong {
  font-weight: 800;
}

body[data-page-kind="login"] .login-panel-card {
  display: grid;
  gap: 12px;
}

body[data-page-kind="login"] .login-provider-stack {
  display: grid;
  gap: 10px;
  width: 100%;
  grid-template-columns: 1fr;
}

body[data-page-kind="login"] .login-provider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  box-sizing: border-box;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: none;
  white-space: nowrap;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

body[data-page-kind="login"] .login-provider-btn:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(0.985);
}

body[data-page-kind="login"] .login-provider-btn:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

body[data-page-kind="login"] .login-provider-btn.provider-kakao {
  background: #fee500;
  color: rgba(25, 25, 25, 0.94);
}

body[data-page-kind="login"] .login-provider-btn.provider-naver {
  background: #03a94d;
  color: #ffffff;
}

body[data-page-kind="login"] .login-provider-btn.is-disabled {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #8e8e93;
}

body[data-page-kind="login"] .login-provider-icon {
  position: static;
  top: auto;
  left: auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: none;
}

body[data-page-kind="login"] .login-provider-btn.provider-kakao .login-provider-icon {
  width: 26px;
  height: 26px;
}

body[data-page-kind="login"] .login-provider-btn.provider-naver .login-provider-icon {
  width: 24px;
  height: 24px;
}

body[data-page-kind="login"] .login-provider-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page-kind="login"] .login-provider-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
}

body[data-page-kind="login"] .login-provider-label {
  display: inline-block;
  min-width: 0;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body[data-page-kind="login"] .login-status-panel {
  gap: 10px;
}

body[data-page-kind="login"] .login-status-box {
  display: grid;
  gap: 7px;
}

body[data-page-kind="login"] .login-status-box strong {
  color: #16233b;
  font-size: 1.06rem;
  font-weight: 800;
}

body[data-page-kind="login"] .login-status-box span {
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.5;
}

body[data-page-kind="login"] .login-entry-actions {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

body[data-page-kind="login"] .login-entry-actions .button-primary,
body[data-page-kind="login"] .login-entry-actions .button-secondary,
body[data-page-kind="login"] .login-entry-actions .button-ghost {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  box-shadow: none;
  transform: none;
}

body[data-page-kind="login"] .login-entry-actions .button-primary {
  background: #16233b;
  border-color: #16233b;
  color: #ffffff;
}

body[data-page-kind="login"] .login-entry-actions .button-secondary,
body[data-page-kind="login"] .login-entry-actions .button-ghost {
  background: #f8fafc;
  border-color: #e5e7eb;
  color: #16233b;
}

body[data-page-kind="login"] .login-entry-actions .button-primary:hover,
body[data-page-kind="login"] .login-entry-actions .button-secondary:hover,
body[data-page-kind="login"] .login-entry-actions .button-ghost:hover {
  transform: none;
  box-shadow: none;
}

body[data-page-kind="login"] .login-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  color: #8e8e93;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
}

body[data-page-kind="login"] .login-logout-link {
  justify-self: center;
}

@media (max-width: 720px) {
  body[data-page-kind="login"] .page-shell {
    padding: 26px 14px;
    padding-top: calc(28px + env(safe-area-inset-top));
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  body[data-page-kind="login"] .app-shell {
    width: min(340px, calc(100vw - 32px));
    max-width: min(340px, calc(100vw - 32px));
  }

  body[data-page-kind="login"] .login-block-card {
    padding: 17px 16px;
    border-radius: 22px;
  }

  body[data-page-kind="login"] .login-title-heading {
    font-size: clamp(1.52rem, 8vw, 1.72rem);
  }

  body[data-page-kind="login"] .login-provider-btn {
    min-height: 56px;
    padding: 0 16px;
  }

  body[data-page-kind="login"] .login-provider-icon {
    width: 23px;
    height: 23px;
  }

  body[data-page-kind="login"] .login-provider-btn.provider-kakao .login-provider-icon,
  body[data-page-kind="login"] .login-provider-btn.provider-naver .login-provider-icon {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 721px) {
  body[data-page-kind="login"] .page-shell {
    padding-top: 48px;
  }

  body[data-page-kind="login"] .login-block-card {
    padding: 22px 24px;
  }

  body[data-page-kind="login"] .login-provider-btn {
    min-height: 60px;
  }

  body[data-page-kind="login"] .login-title-heading {
    font-size: 1.82rem;
  }
}

body[data-page-kind="submit"] .app-shell {
  max-width: 720px;
}

body[data-page-kind="board"] .app-shell {
  max-width: 720px;
}

body[data-page-kind="submit"] .content-stack {
  gap: 14px;
}

body[data-page-kind="submit"] .header-section,
body[data-page-kind="submit"] .page-card {
  box-shadow: none;
}

body[data-page-kind="board"] .board-app-header {
  padding: 16px 18px;
  gap: 10px;
  box-shadow: none;
}

body[data-page-kind="board"] .board-app-header .main-title {
  font-size: 1.18rem;
}

body[data-page-kind="board"] .board-app-header .board-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

body[data-page-kind="board"] .board-app-header .board-header-copyblock {
  grid-column: 2;
  gap: 0;
  text-align: center;
}

body[data-page-kind="board"] .board-app-header .header-title-lockup {
  align-items: center;
}

body[data-page-kind="board"] .board-app-header .board-header-actions {
  grid-column: 3;
  justify-self: end;
  gap: 8px;
  flex-wrap: wrap;
}

body[data-page-kind="submit"] .submit-app-header {
  padding: 16px 18px;
  gap: 10px;
}

body[data-page-kind="submit"] .submit-app-header .header-top-row {
  justify-content: center;
  align-items: center;
}

body[data-page-kind="submit"] .submit-app-header .header-side-badges {
  display: none;
}

body[data-page-kind="submit"] .submit-app-header .header-brand-link {
  margin: 0 auto;
  text-align: center;
}

body[data-page-kind="submit"] .submit-app-header .header-title-lockup {
  align-items: center;
}

body[data-page-kind="submit"] .submit-app-header .main-title {
  font-size: 1.18rem;
}

body[data-page-kind="submit"] .submit-app-header .sub-domain {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page-kind="submit"] .submit-app-header .header-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body[data-page-kind="submit"] input:focus,
body[data-page-kind="submit"] textarea:focus,
body[data-page-kind="submit"] select:focus {
  box-shadow: none;
  border-color: #cbd5e1;
}

.submit-title-card,
.submit-entry-card {
  border-radius: 22px;
}

.submit-title-card {
  padding: 18px 20px;
}

.submit-title-stack {
  display: grid;
  gap: 6px;
}

.submit-title-kicker {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submit-title-heading {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.submit-form-shell {
  gap: 14px;
}

.submit-entry-card {
  padding: 20px 18px 18px;
}

.submit-field-stack {
  display: grid;
  gap: 18px;
}

.submit-field span,
.submit-block-heading h2,
.submit-tag-toggle {
  font-family: var(--hotdeal-font-stack);
}

.submit-field input,
.submit-field textarea {
  background: #fff;
}

.submit-major-field > span {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.submit-block {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.submit-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submit-block-heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.submit-schedule-shell {
  display: grid;
  gap: 14px;
}

.submit-schedule-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.submit-mode-family {
  flex: 0 0 auto;
}

.submit-mode-family .segment-item {
  border: 0;
  background: #f3f4f6;
  color: var(--text-secondary);
  cursor: pointer;
}

.submit-mode-family .segment-item.active {
  background: #eef4ff;
  color: #2563eb;
  box-shadow: none;
}

.submit-mode-options {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.submit-mode-options [hidden] {
  display: none !important;
}

.submit-mode-chip span {
  min-height: 34px;
  padding: 0 13px;
}

.submit-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.submit-date-grid > * {
  min-width: 0;
}

.submit-date-grid > .schedule-detail-panel[data-schedule-repeat] {
  grid-column: 1 / -1;
}

.submit-date-row {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.submit-datetime-row {
  align-items: start;
}

.submit-datetime-row > span {
  padding-top: 13px;
}

.submit-date-row span {
  margin: 0;
  white-space: nowrap;
}

.submit-datetime-stack {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.submit-date-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.submit-date-input-row input[type="date"] {
  width: 100%;
  min-width: 0;
}

.submit-time-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d7e0ea;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.submit-time-toggle.is-open {
  background: #eef4ff;
  border-color: rgba(37, 99, 235, 0.24);
  color: #2563eb;
}

.submit-time-panel {
  width: min(180px, 100%);
}

.submit-time-panel[hidden] {
  display: none !important;
}

.submit-time-panel input[type="time"] {
  width: 100%;
}

.submit-inline-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.submit-inline-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.submit-weekday-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.submit-weekday-row {
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 6px;
}

.submit-weekday-grid .chip-option {
  min-width: 0;
}

.submit-weekday-grid .chip-option span {
  width: 100%;
  min-height: 32px;
  justify-content: center;
  padding: 0;
  font-size: 0.74rem;
}

.submit-monthly-row input {
  max-width: 108px;
}

.submit-chip-grid .chip-option span {
  background: #f8fafc;
  border-color: #e6ecf4;
  color: #b4bfce;
}

.submit-chip-grid .chip-option input:checked + span {
  background: #eef4ff;
  border-color: rgba(37, 99, 235, 0.24);
  color: #2563eb;
}

.submit-chip-grid {
  gap: 10px;
}

.submit-weekday-grid.submit-chip-grid {
  gap: 3px;
}

.submit-tag-stack {
  display: grid;
  gap: 14px;
}

.submit-tag-group {
  display: grid;
  gap: 10px;
}

.submit-tag-panel {
  display: grid;
  gap: 10px;
}

.submit-custom-chip-field {
  display: grid;
  gap: 8px;
}

.submit-custom-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.submit-free-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 8px 0 12px;
  border-radius: 999px;
  border: 1px solid #d7e0ea;
  background: #f3f6fa;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
}

.submit-free-chip-label {
  line-height: 1;
}

.submit-free-chip-remove {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.submit-free-chip-remove:hover {
  color: #475569;
}

.submit-tag-direct-field input {
  background: #fff;
}

.submit-tag-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}

.submit-tag-arrow {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1;
  transition: transform 0.18s ease, color 0.18s ease;
}

.submit-tag-toggle.is-open .submit-tag-arrow {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.submit-tag-panel[hidden] {
  display: none !important;
}

.submit-action-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.submit-primary-button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border-color: #1677ff;
  background: #1677ff;
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.2);
  font-size: 0.98rem;
}

.submit-primary-button:hover {
  transform: none;
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.2);
}

.admin-submission-actions {
  display: grid;
  gap: 8px;
  min-width: 128px;
}

.admin-submission-actions form {
  margin: 0;
}

.admin-submission-actions .button-primary,
.admin-submission-actions .button-secondary,
.admin-submission-actions .button-ghost {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
}

.admin-submission-action-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.admin-stage-section {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.admin-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-stage-title {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-stage-current {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-stage-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-stage-form {
  margin: 0;
}

.admin-stage-button {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.admin-stage-form .admin-stage-button {
  cursor: pointer;
}

.admin-stage-form .admin-stage-button:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.28);
  box-shadow: 0 10px 20px rgba(22, 119, 255, 0.12);
}

.admin-stage-button.is-active {
  border-color: rgba(22, 119, 255, 0.22);
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.96) 0%, rgba(221, 236, 255, 1) 100%);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, 0.08);
}

.admin-stage-button.is-complete {
  border-color: rgba(18, 183, 106, 0.18);
  background: rgba(18, 183, 106, 0.08);
  color: var(--success);
}

.admin-stage-button.is-disabled,
.admin-stage-button:disabled {
  opacity: 0.68;
  cursor: default;
}

.admin-stage-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.admin-stage-strip.is-compact {
  margin-top: 2px;
}

.admin-stage-strip.is-compact .admin-stage-button {
  min-height: 34px;
  padding: 0 8px;
  font-size: 0.74rem;
  border-radius: 12px;
}

@media (max-width: 720px) {
  body[data-page-kind="board"] .board-app-header {
    padding: 14px 16px;
  }

  body[data-page-kind="board"] .board-app-header .board-header-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  body[data-page-kind="board"] .board-app-header .board-header-actions {
    width: 100%;
  }

  body[data-page-kind="board"] .board-app-header .button-primary,
  body[data-page-kind="board"] .board-app-header .button-secondary,
  body[data-page-kind="board"] .board-app-header .button-ghost {
    flex: 1 1 0;
  }

  body[data-page-kind="submit"] .page-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  body[data-page-kind="submit"] .submit-app-header {
    padding: 14px 16px;
  }

  body[data-page-kind="submit"] .submit-app-header .header-action-row {
    width: 100%;
  }

  body[data-page-kind="submit"] .submit-app-header .button-secondary,
  body[data-page-kind="submit"] .submit-app-header .button-ghost {
    flex: 1 1 0;
  }

  .submit-title-card {
    padding: 16px 18px;
  }

  .submit-title-heading {
    font-size: 1.34rem;
  }

  .submit-entry-card {
    padding: 18px 16px 16px;
  }

  .submit-schedule-toolbar,
  .submit-date-grid {
    grid-template-columns: 1fr;
  }

  .submit-schedule-toolbar {
    display: grid;
  }

  .submit-mode-family {
    width: 100%;
  }

  .submit-mode-family .segment-item {
    flex: 1 1 0;
  }

  .submit-mode-options {
    width: 100%;
  }

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

/* ─── Site Footer ─────────────────────────────────────────── */
.site-footer {
  width: 100%;
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background: var(--bg-body);
}

.site-footer-inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer-brand {
  font-weight: 600;
  color: var(--text-secondary);
}

.site-footer-sep {
  color: var(--text-muted);
}

.site-footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ─── Login Privacy Notice ────────────────────────────────── */
.login-privacy-notice {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.login-privacy-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-privacy-link:hover {
  color: var(--text-primary);
}

/* ─── Privacy Policy Page ─────────────────────────────────── */
.privacy-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.privacy-doc-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.privacy-doc-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.privacy-doc-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.privacy-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.privacy-section {
  margin-top: 28px;
}

.privacy-section + .privacy-section {
  padding-top: 8px;
}

.privacy-section-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.privacy-subsection-title {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-section p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.privacy-list {
  margin: 0 0 10px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.privacy-list li {
  margin-bottom: 4px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 10px;
}

.privacy-table th,
.privacy-table td {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  text-align: left;
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.6;
}

.privacy-table thead th {
  background: var(--bg-muted);
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-table tbody th {
  background: var(--bg-muted);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.privacy-note {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  background: var(--bg-muted);
  border-left: 3px solid var(--border-color);
  padding: 8px 12px !important;
  border-radius: 0 4px 4px 0;
  margin-top: 8px !important;
}

.privacy-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-link:hover {
  color: var(--text-primary);
}

.privacy-external {
  font-style: italic;
  color: var(--text-muted);
}

.privacy-doc code {
  font-family: "Menlo", "Consolas", monospace;
  font-size: 12px;
  background: var(--bg-muted);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .privacy-doc {
    padding: 16px 16px 40px;
  }

  .privacy-doc-title {
    font-size: 18px;
  }

  .privacy-section-title {
    font-size: 15px;
  }

  .privacy-table {
    font-size: 12px;
  }

  .privacy-table th,
  .privacy-table td {
    padding: 8px 10px;
  }
}

/* 이벤트 상세 헤더 (제목 + 요약) */
.event-detail-header {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.event-detail-summary {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* 원문 출처 행 */
.event-detail-source-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg-muted);
  border-radius: 10px;
  text-decoration: none;
  min-width: 0;
  transition: background-color 0.15s ease;
}

.event-detail-source-row:hover {
  background: var(--bg-hover, #ebebeb);
}

.event-detail-source-label {
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
}

.event-detail-source-row .event-detail-source-value {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 500;
}

.event-detail-source-icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* 좋아요 버튼 */
.event-detail-like-row {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.event-detail-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border-color);
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.event-detail-like-btn svg {
  width: 18px;
  height: 18px;
  transition: fill 0.15s ease, color 0.15s ease;
}

.event-detail-like-btn span {
  line-height: 1;
  transform: translateY(-1px);
}

.event-detail-like-btn:hover {
  border-color: #e0506a;
  color: #e0506a;
}

.event-detail-like-btn.is-active {
  border-color: #e0506a;
  color: #e0506a;
  background: #fff0f3;
}

/* Admin event edit button (visible only to admins on event detail) */
.btn-admin-edit {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-admin-edit:hover {
  background: var(--accent);
  color: #fff;
}

/* Monospaced textarea for markdown editing */
textarea.admin-mono {
  font-family: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Naver Pay — slug: naverpay */
.provider-theme.provider-naverpay,
.provider-soft.provider-naverpay,
.chip-option input:checked + span.provider-naverpay {
  background: rgba(3, 199, 90, 0.12);
  border-color: rgba(3, 199, 90, 0.22);
  color: #03c75a;
}

/* GS25 — slug: gs25 */
.provider-theme.provider-gs25,
.provider-soft.provider-gs25,
.chip-option input:checked + span.provider-gs25 {
  background: rgba(0, 212, 178, 0.12);
  border-color: rgba(0, 212, 178, 0.22);
  color: #1a2054;
}

/* CU — slug: cu */
.provider-theme.provider-cu,
.provider-soft.provider-cu,
.chip-option input:checked + span.provider-cu {
  background: rgba(101, 45, 135, 0.12);
  border-color: rgba(101, 45, 135, 0.22);
  color: #652d87;
}

/* 7-Eleven — slug: seven-eleven */
.provider-theme.provider-seven-eleven,
.provider-soft.provider-seven-eleven,
.chip-option input:checked + span.provider-seven-eleven {
  background: rgba(0, 128, 97, 0.12);
  border-color: rgba(0, 128, 97, 0.22);
  color: #008061;
}

/* Emart24 — slug: emart24 */
.provider-theme.provider-emart24,
.provider-soft.provider-emart24,
.chip-option input:checked + span.provider-emart24 {
  background: rgba(255, 184, 28, 0.15);
  border-color: rgba(255, 184, 28, 0.3);
  color: #54565b;
}

/* Paris Baguette — slug: paris-baguette */
.provider-theme.provider-paris-baguette,
.provider-soft.provider-paris-baguette,
.chip-option input:checked + span.provider-paris-baguette {
  background: rgba(0, 74, 152, 0.12);
  border-color: rgba(0, 74, 152, 0.22);
  color: #004a98;
}

/* Lotte World — slug: lotte-world */
.provider-theme.provider-lotte-world,
.provider-soft.provider-lotte-world,
.chip-option input:checked + span.provider-lotte-world {
  background: rgba(220, 20, 60, 0.12);
  border-color: rgba(220, 20, 60, 0.22);
  color: #dc143c;
}

/* Everland — slug: everland */
.provider-theme.provider-everland,
.provider-soft.provider-everland,
.chip-option input:checked + span.provider-everland {
  background: rgba(118, 58, 142, 0.12);
  border-color: rgba(118, 58, 142, 0.22);
  color: #763a8e;
}

/* Baskin Robbins — slug: baskin-robbins */
.provider-theme.provider-baskin-robbins,
.provider-soft.provider-baskin-robbins,
.chip-option input:checked + span.provider-baskin-robbins {
  background: rgba(255, 102, 153, 0.12);
  border-color: rgba(255, 102, 153, 0.22);
  color: #ff6699;
}

/* McDonald's — slug: mcdonalds */
.provider-theme.provider-mcdonalds,
.provider-soft.provider-mcdonalds,
.chip-option input:checked + span.provider-mcdonalds {
  background: rgba(255, 199, 44, 0.15);
  border-color: rgba(255, 199, 44, 0.3);
  color: #da291c;
}

/* Daiso — slug: daiso */
.provider-theme.provider-daiso,
.provider-soft.provider-daiso,
.chip-option input:checked + span.provider-daiso {
  background: rgba(227, 0, 15, 0.12);
  border-color: rgba(227, 0, 15, 0.22);
  color: #e3000f;
}

/* Mega MGC Coffee — slug: mega-mgc-coffee */
.provider-theme.provider-mega-mgc-coffee,
.provider-soft.provider-mega-mgc-coffee,
.chip-option input:checked + span.provider-mega-mgc-coffee {
  background: rgba(255, 204, 0, 0.15);
  border-color: rgba(255, 204, 0, 0.3);
  color: #4a2c11;
}

/* Ediya Coffee — slug: ediya-coffee */
.provider-theme.provider-ediya-coffee,
.provider-soft.provider-ediya-coffee,
.chip-option input:checked + span.provider-ediya-coffee {
  background: rgba(26, 49, 104, 0.12);
  border-color: rgba(26, 49, 104, 0.22);
  color: #1a3168;
}

/* Paul Bassett — slug: paul-bassett */
.provider-theme.provider-paul-bassett,
.provider-soft.provider-paul-bassett,
.chip-option input:checked + span.provider-paul-bassett {
  background: rgba(184, 150, 93, 0.12);
  border-color: rgba(184, 150, 93, 0.22);
  color: #b8965d;
}

/* Innisfree — slug: innisfree */
.provider-theme.provider-innisfree,
.provider-soft.provider-innisfree,
.chip-option input:checked + span.provider-innisfree {
  background: rgba(0, 89, 45, 0.12);
  border-color: rgba(0, 89, 45, 0.22);
  color: #00592d;
}

/* Etude — slug: etude */
.provider-theme.provider-etude,
.provider-soft.provider-etude,
.chip-option input:checked + span.provider-etude {
  background: rgba(246, 137, 169, 0.15);
  border-color: rgba(246, 137, 169, 0.3);
  color: #c0426f;
}

/* Nature Republic — slug: nature-republic */
.provider-theme.provider-nature-republic,
.provider-soft.provider-nature-republic,
.chip-option input:checked + span.provider-nature-republic {
  background: rgba(94, 144, 69, 0.12);
  border-color: rgba(94, 144, 69, 0.22);
  color: #5e9045;
}

/* Tonymoly — slug: tonymoly */
.provider-theme.provider-tonymoly,
.provider-soft.provider-tonymoly,
.chip-option input:checked + span.provider-tonymoly {
  background: rgba(35, 31, 32, 0.12);
  border-color: rgba(35, 31, 32, 0.22);
  color: #231f20;
}

/* Gamsung Coffee — slug: gamsung-coffee */
.provider-theme.provider-gamsung-coffee,
.provider-soft.provider-gamsung-coffee,
.chip-option input:checked + span.provider-gamsung-coffee {
  background: rgba(199, 36, 36, 0.12);
  border-color: rgba(199, 36, 36, 0.22);
  color: #c72424;
}

/* NH Hanaro Mart — slug: hanaro-mart */
.provider-theme.provider-hanaro-mart,
.provider-soft.provider-hanaro-mart,
.chip-option input:checked + span.provider-hanaro-mart {
  background: rgba(0, 166, 81, 0.12);
  border-color: rgba(0, 166, 81, 0.22);
  color: #00a651;
}

/* Additional brand colors */
.provider-theme.provider-madforgarlic, .provider-soft.provider-madforgarlic , .chip-option input:checked + span.provider-madforgarlic { background: rgba(224, 30, 38, 0.12); border-color: rgba(224, 30, 38, 0.22); color: #e01e26; }
.provider-theme.provider-tomato-pos, .provider-soft.provider-tomato-pos , .chip-option input:checked + span.provider-tomato-pos { background: rgba(226, 35, 26, 0.12); border-color: rgba(226, 35, 26, 0.22); color: #e2231a; }
[class*="provider-역전우동"] , .chip-option input:checked + span[class*="provider-역전우동"] { background: rgba(255, 165, 0, 0.12); border-color: rgba(255, 165, 0, 0.22); color: #ffa500; }
.provider-theme.provider-lg-bestshop, .provider-soft.provider-lg-bestshop , .chip-option input:checked + span.provider-lg-bestshop { background: rgba(165, 0, 52, 0.12); border-color: rgba(165, 0, 52, 0.22); color: #a50034; }
.provider-theme.provider-jeonbuk-jshop, .provider-soft.provider-jeonbuk-jshop , .chip-option input:checked + span.provider-jeonbuk-jshop { background: rgba(0, 165, 181, 0.12); border-color: rgba(0, 165, 181, 0.22); color: #00a5b5; }
.provider-theme.provider-jeonbuk-bookcafe, .provider-soft.provider-jeonbuk-bookcafe , .chip-option input:checked + span.provider-jeonbuk-bookcafe { background: rgba(0, 165, 181, 0.12); border-color: rgba(0, 165, 181, 0.22); color: #00a5b5; }
[class*="provider-럭키찬스"] , .chip-option input:checked + span[class*="provider-럭키찬스"] { background: rgba(241, 196, 15, 0.12); border-color: rgba(241, 196, 15, 0.22); color: #f1c40f; }
.provider-theme.provider-lotte-mart, .provider-soft.provider-lotte-mart , .chip-option input:checked + span.provider-lotte-mart { background: rgba(220, 20, 60, 0.12); border-color: rgba(220, 20, 60, 0.22); color: #dc143c; }
.provider-theme.provider-choroc-maul, .provider-soft.provider-choroc-maul , .chip-option input:checked + span.provider-choroc-maul { background: rgba(96, 158, 43, 0.12); border-color: rgba(96, 158, 43, 0.22); color: #609e2b; }
.provider-theme.provider-theventi, .provider-soft.provider-theventi , .chip-option input:checked + span.provider-theventi { background: rgba(106, 28, 125, 0.12); border-color: rgba(106, 28, 125, 0.22); color: #6a1c7d; }
.provider-theme.provider-cafe-bombom, .provider-soft.provider-cafe-bombom , .chip-option input:checked + span.provider-cafe-bombom { background: rgba(204, 153, 0, 0.12); border-color: rgba(204, 153, 0, 0.22); color: #cc9900; }
[class*="provider-도미노피자"] , .chip-option input:checked + span[class*="provider-도미노피자"] { background: rgba(227, 24, 55, 0.12); border-color: rgba(227, 24, 55, 0.22); color: #e31837; }
[class*="provider-뚜레쥬르"] , .chip-option input:checked + span[class*="provider-뚜레쥬르"] { background: rgba(0, 86, 66, 0.12); border-color: rgba(0, 86, 66, 0.22); color: #005642; }
.provider-theme.provider-touslesjours, .provider-soft.provider-touslesjours , .chip-option input:checked + span.provider-touslesjours { background: rgba(0, 86, 66, 0.12); border-color: rgba(0, 86, 66, 0.22); color: #005642; }
.provider-theme.provider-mega-mart, .provider-soft.provider-mega-mart , .chip-option input:checked + span.provider-mega-mart { background: rgba(228, 0, 43, 0.12); border-color: rgba(228, 0, 43, 0.22); color: #e4002b; }
.provider-theme.provider-eworld, .provider-soft.provider-eworld , .chip-option input:checked + span.provider-eworld { background: rgba(227, 0, 34, 0.12); border-color: rgba(227, 0, 34, 0.22); color: #e30022; }
.provider-theme.provider-ak-plaza, .provider-soft.provider-ak-plaza , .chip-option input:checked + span.provider-ak-plaza { background: rgba(236, 28, 36, 0.12); border-color: rgba(236, 28, 36, 0.22); color: #ec1c24; }
[class*="provider-다운타우너"] , .chip-option input:checked + span[class*="provider-다운타우너"] { background: rgba(0, 62, 126, 0.12); border-color: rgba(0, 62, 126, 0.22); color: #003e7e; }
.provider-theme.provider-etland, .provider-soft.provider-etland , .chip-option input:checked + span.provider-etland { background: rgba(227, 0, 27, 0.12); border-color: rgba(227, 0, 27, 0.22); color: #e3001b; }
.provider-theme.provider-hdc-iparkmall, .provider-soft.provider-hdc-iparkmall , .chip-option input:checked + span.provider-hdc-iparkmall { background: rgba(0, 62, 126, 0.12); border-color: rgba(0, 62, 126, 0.22); color: #003e7e; }
.provider-theme.provider-egg-drop, .provider-soft.provider-egg-drop , .chip-option input:checked + span.provider-egg-drop { background: rgba(211, 46, 39, 0.12); border-color: rgba(211, 46, 39, 0.22); color: #d32e27; }
.provider-theme.provider-top10, .provider-soft.provider-top10 , .chip-option input:checked + span.provider-top10 { background: rgba(0, 0, 0, 0.12); border-color: rgba(0, 0, 0, 0.22); color: #000000; }
.provider-theme.provider-davich, .provider-soft.provider-davich , .chip-option input:checked + span.provider-davich { background: rgba(0, 80, 160, 0.12); border-color: rgba(0, 80, 160, 0.22); color: #0050a0; }
.provider-theme.provider-seoulland, .provider-soft.provider-seoulland , .chip-option input:checked + span.provider-seoulland { background: rgba(228, 0, 43, 0.12); border-color: rgba(228, 0, 43, 0.22); color: #e4002b; }
.provider-theme.provider-hyundai-duty-free, .provider-soft.provider-hyundai-duty-free , .chip-option input:checked + span.provider-hyundai-duty-free { background: rgba(0, 72, 50, 0.12); border-color: rgba(0, 72, 50, 0.22); color: #004832; }
.provider-theme.provider-hyundai-outlet, .provider-soft.provider-hyundai-outlet , .chip-option input:checked + span.provider-hyundai-outlet { background: rgba(0, 72, 50, 0.12); border-color: rgba(0, 72, 50, 0.22); color: #004832; }
.provider-theme.provider-caribbean-bay, .provider-soft.provider-caribbean-bay , .chip-option input:checked + span.provider-caribbean-bay { background: rgba(0, 130, 200, 0.12); border-color: rgba(0, 130, 200, 0.22); color: #0082c8; }
[class*="provider-이마트에브리데이"] , .chip-option input:checked + span[class*="provider-이마트에브리데이"] { background: rgba(84, 86, 91, 0.12); border-color: rgba(84, 86, 91, 0.22); color: #54565b; }
.provider-theme.provider-amasvin, .provider-soft.provider-amasvin , .chip-option input:checked + span.provider-amasvin { background: rgba(0, 119, 200, 0.12); border-color: rgba(0, 119, 200, 0.22); color: #0077c8; }
.provider-theme.provider-aqua-planet, .provider-soft.provider-aqua-planet , .chip-option input:checked + span.provider-aqua-planet { background: rgba(0, 72, 144, 0.12); border-color: rgba(0, 72, 144, 0.22); color: #004890; }
.provider-theme.provider-jeju-bank, .provider-soft.provider-jeju-bank , .chip-option input:checked + span.provider-jeju-bank { background: rgba(0, 98, 168, 0.12); border-color: rgba(0, 98, 168, 0.22); color: #0062a8; }
.provider-theme.provider-jeju-theme, .provider-soft.provider-jeju-theme , .chip-option input:checked + span.provider-jeju-theme { background: rgba(0, 158, 94, 0.12); border-color: rgba(0, 158, 94, 0.22); color: #009e5e; }
.provider-theme.provider-missha-apieu, .provider-soft.provider-missha-apieu , .chip-option input:checked + span.provider-missha-apieu { background: rgba(217, 43, 56, 0.12); border-color: rgba(217, 43, 56, 0.22); color: #d92b38; }
.provider-theme.provider-pica-pc, .provider-soft.provider-pica-pc , .chip-option input:checked + span.provider-pica-pc { background: rgba(178, 143, 0, 0.12); border-color: rgba(178, 143, 0, 0.22); color: #b28f00; }
.provider-theme.provider-the-liter, .provider-soft.provider-the-liter , .chip-option input:checked + span.provider-the-liter { background: rgba(228, 0, 43, 0.12); border-color: rgba(228, 0, 43, 0.22); color: #e4002b; }
.provider-theme.provider-tj-media, .provider-soft.provider-tj-media , .chip-option input:checked + span.provider-tj-media { background: rgba(237, 28, 36, 0.12); border-color: rgba(237, 28, 36, 0.22); color: #ed1c24; }
.provider-theme.provider-dessert39, .provider-soft.provider-dessert39 , .chip-option input:checked + span.provider-dessert39 { background: rgba(17, 17, 17, 0.12); border-color: rgba(17, 17, 17, 0.22); color: #111111; }
.provider-theme.provider-ak-golf, .provider-soft.provider-ak-golf , .chip-option input:checked + span.provider-ak-golf { background: rgba(0, 45, 98, 0.12); border-color: rgba(0, 45, 98, 0.22); color: #002d62; }
.provider-theme.provider-golfzon-market, .provider-soft.provider-golfzon-market , .chip-option input:checked + span.provider-golfzon-market { background: rgba(0, 65, 142, 0.12); border-color: rgba(0, 65, 142, 0.22); color: #00418e; }
[class*="provider-요기요"] , .chip-option input:checked + span[class*="provider-요기요"] { background: rgba(250, 0, 80, 0.12); border-color: rgba(250, 0, 80, 0.22); color: #fa0050; }
[class*="provider-쉐이크쉑"] , .chip-option input:checked + span[class*="provider-쉐이크쉑"] { background: rgba(81, 161, 71, 0.12); border-color: rgba(81, 161, 71, 0.22); color: #51a147; }
[class*="provider-폴"] , .chip-option input:checked + span[class*="provider-폴"] { background: rgba(184, 150, 93, 0.12); border-color: rgba(184, 150, 93, 0.22); color: #b8965d; }
