/* =============================================
   해조전복 블로그형 랜딩 — 공통 스타일시트
   네이비 + 골드 테마
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

:root {
  --color-brand: #1B3A6B;
  --color-brand-dark: #0f2347;
  --color-brand-mid: #2a5298;
  --color-accent: #C9A84C;
  --color-accent-hover: #b8913e;
  --color-brand-light: #EEF2F8;
  --color-brand-border: #a8bcd8;

  --bg-page: #fafaf8;
  --bg-post: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --border-light: #eaeaea;
  --border-medium: #d0d0d0;
  --bg-surface: #f4f6f8;

  --font-main: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  --max-width: 720px;
  --spacing-xs: 6px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── 블로그 헤더 ─────────────────────────────── */
.blog-header {
  border-bottom: 1px solid var(--border-light);
  padding: var(--spacing-md) 0;
  margin-bottom: var(--spacing-lg);
  background: var(--bg-post);
}

.blog-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-header__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-brand-light);
  border: 2px solid var(--color-brand-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-brand);
  font-size: 22px;
  font-weight: 700;
}

img.blog-header__avatar {
  object-fit: cover;
  object-position: top center;
  display: block;
}

.blog-header__info {
  flex: 1;
}

.blog-header__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.blog-header__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── 포스트 제목 ─────────────────────────────── */
.blog-post-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  word-break: keep-all;
}

/* ─── 포스트 메타 ─────────────────────────────── */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--spacing-lg);
}

.blog-meta__views::before {
  content: "· ";
}

.blog-meta__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 4px;
}

.blog-meta__tag {
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}

/* ─── 본문 ─────────────────────────────────────── */
.blog-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-primary);
}

.blog-body p {
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.blog-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  letter-spacing: -0.3px;
  border-left: 5px solid #e00000;
  padding-left: 12px;
  background: #fff8f8;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
}

.blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--spacing-md) 0 10px;
  letter-spacing: -0.2px;
}

.blog-body ul,
.blog-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.blog-body li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.blog-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ─── 이미지 ─────────────────────────────────── */
.blog-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  object-fit: cover;
}

.blog-img--hero {
  aspect-ratio: 16 / 9;
  max-height: 400px;
  background: var(--bg-surface);
}

/* ─── 제품 강조 박스 ──────────────────────────── */
.product-highlight {
  border: 2px solid var(--color-brand);
  border-radius: 12px;
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  background: var(--color-brand-light);
}

.product-highlight__label {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-highlight__name {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-brand-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.product-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-highlight li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--color-brand-border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-highlight li:last-child {
  border-bottom: none;
}

.product-highlight li::before {
  content: "·";
  color: var(--color-brand);
  font-weight: 900;
  flex-shrink: 0;
}

.product-highlight__desc {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── 데이터 박스 ─────────────────────────────── */
.data-box {
  background: var(--bg-surface);
  border-left: 4px solid var(--color-brand);
  border-radius: 0 8px 8px 0;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.data-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.data-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.data-box p:last-child {
  margin-bottom: 0;
}

.data-box ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.data-box li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.data-box li::before {
  content: "-";
  color: var(--color-brand);
  flex-shrink: 0;
}

.data-box strong {
  color: var(--color-brand-dark);
  font-weight: 700;
}

.data-box__source {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ─── CTA ────────────────────────────────────── */
.cta-section {
  background: var(--color-brand-light);
  border: 1.5px solid var(--color-brand-border);
  border-radius: 16px;
  padding: var(--spacing-lg) var(--spacing-md);
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.cta-section__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: var(--spacing-sm);
}

.cta-section__price-block {
  margin-bottom: var(--spacing-md);
}

.cta-section__price-label {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.cta-section__price-now {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-brand-dark);
  letter-spacing: -0.5px;
}

.cta-section__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-brand-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.cta-section__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: #e00000;
  color: #fff;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 900;
  padding: 18px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
  width: 100%;
  max-width: 360px;
}

.cta-btn:hover {
  background: #c00000;
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-section__extra {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── 댓글 ──────────────────────────────────── */
.comments {
  margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.comments__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.comment-card {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.comment-card:last-child {
  border-bottom: none;
}

.comment-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.comment-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-brand-light);
  border: 1px solid var(--color-brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand);
  flex-shrink: 0;
}

.comment-card__meta {
  flex: 1;
}

.comment-card__nick {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.comment-card__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.comment-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 46px;
}

.comment-card--author {
  background: var(--color-brand-light);
  border-radius: 8px;
  padding: var(--spacing-sm) var(--spacing-md);
  border-bottom: none;
  margin-bottom: 1px;
}

.comment-card--author .comment-card__body {
  padding-left: 0;
}

/* ─── 인용 ──────────────────────────────────── */
.quote-text {
  background: var(--bg-surface);
  border-left: 3px solid var(--color-accent);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  color: var(--text-secondary);
  margin: var(--spacing-md) 0;
  line-height: 1.8;
  font-style: italic;
}

/* ─── 면책 문구 ────────────────────────────── */
.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-surface);
  border-radius: 6px;
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0 var(--spacing-xl);
  border-top: 2px solid var(--border-light);
}

/* ─── 카카오톡 대화 ──────────────────────────── */
.kakao-chat {
  --kakao-bg: #b2c7d9;
  --kakao-bubble-me: #fee500;
  --kakao-bubble-you: #ffffff;
  background: var(--kakao-bg);
  border-radius: 12px;
  padding: 18px 14px;
  margin: var(--spacing-lg) 0;
}

.kakao-chat__roomname {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #2f4156;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(47, 65, 86, 0.18);
}

.kakao-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.kakao-msg:last-child { margin-bottom: 0; }

.kakao-msg__avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #dfe6ec;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #5b6b7a;
}

.kakao-msg__content {
  display: flex;
  flex-direction: column;
  max-width: 74%;
}

.kakao-msg__name {
  font-size: 12px;
  color: #3b4a5a;
  margin-bottom: 4px;
  padding-left: 2px;
}

.kakao-msg__bubble {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  padding: 9px 12px;
  background: var(--kakao-bubble-you);
  border-radius: 4px 16px 16px 16px;
  word-break: keep-all;
}

.kakao-msg__time {
  font-size: 10px;
  color: #5b6b7a;
  margin: 0 4px 2px;
  align-self: flex-end;
}

.kakao-msg--me {
  flex-direction: row-reverse;
}

.kakao-msg--me .kakao-msg__content {
  align-items: flex-end;
}

.kakao-msg--me .kakao-msg__bubble {
  background: var(--kakao-bubble-me);
  border-radius: 16px 4px 16px 16px;
}

/* ─── 이벤트 알림 ─────────────────────────────── */
.event-notice {
  background: linear-gradient(180deg, #fff7e6 0%, #fdeccd 100%);
  border: 2px solid var(--color-accent);
  border-radius: 14px;
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.event-notice__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.event-notice__title {
  font-size: 17px;
  font-weight: 900;
  color: var(--color-brand-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}

.event-notice p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

.event-notice p:last-child { margin-bottom: 0; }

.event-notice strong {
  color: var(--color-accent-hover);
  font-weight: 900;
}

/* ─── DB 수집 폼 ─────────────────────────────── */
.db-form {
  background: var(--bg-post);
  border: 2px solid var(--color-brand);
  border-radius: 16px;
  padding: var(--spacing-lg) var(--spacing-md);
  margin: var(--spacing-md) 0 var(--spacing-xl);
}

.db-form__banner {
  display: block;
  width: calc(100% + var(--spacing-md) * 2);
  max-width: none;
  height: auto;
  margin: calc(var(--spacing-lg) * -1) calc(var(--spacing-md) * -1) var(--spacing-md);
  border-radius: 14px 14px 0 0;
}

.db-form__heading {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-brand-dark);
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.db-form__sub {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.db-form__field {
  margin-bottom: 14px;
}

.db-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.db-form__input {
  width: 100%;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-primary);
  padding: 13px 14px;
  border: 1.5px solid var(--border-medium);
  border-radius: 9px;
  background: var(--bg-page);
  transition: border-color 0.15s;
}

.db-form__input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.db-form__input::placeholder { color: var(--text-muted); }

.db-form__input--error {
  border-color: #d23f3f;
}

.db-form__hint {
  display: none;
  margin: 6px 2px 0;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #d23f3f;
}

.db-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 var(--spacing-md);
}

.db-form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--color-brand);
  flex-shrink: 0;
  cursor: pointer;
}

.db-form__agree-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.db-form__agree-text a,
.db-form__agree-link {
  text-decoration: underline;
  color: var(--color-brand);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.db-form__agree-link:hover { color: var(--color-brand-dark); }

/* ─── 개인정보 취급방침 모달 ─────────────────── */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.privacy-modal[aria-hidden="false"] { display: flex; }

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.privacy-modal__box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.privacy-modal__title {
  font-size: 17px;
  font-weight: 900;
  margin: 0;
  color: var(--text-primary);
}

.privacy-modal__close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0 4px;
}

.privacy-modal__close:hover { color: var(--text-primary); }

.privacy-modal__body {
  padding: 18px 20px 22px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  -webkit-overflow-scrolling: touch;
}

.privacy-modal__body h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 18px 0 8px;
  color: var(--text-primary);
}

.privacy-modal__body h4:first-child { margin-top: 0; }

.privacy-modal__body p {
  margin: 0 0 10px;
}

.privacy-modal__body ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.privacy-modal__body li { margin-bottom: 4px; }

body.modal-open { overflow: hidden; }

.db-form .cta-btn {
  display: block;
  margin: 0 auto;
}

.db-form__note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ─── 유틸리티 ─────────────────────────────── */
.section-gap { margin-top: var(--spacing-lg); }
.section-gap--lg { margin-top: var(--spacing-xl); }

/* ─── 강조 유틸리티 ──────────────────────────────── */
.em-red {
  color: #e00000;
  font-weight: 700;
}
.em-highlight {
  background: #fff176;
  padding: 0 4px;
  border-radius: 2px;
  font-weight: 700;
}
.em-num {
  color: #e00000;
  font-weight: 900;
  font-size: 1.1em;
}
.em-green {
  color: #1a7a1a;
  font-weight: 700;
}

/* ─── 시도 리스트 (✓ 체크마크) ──────────────────── */
.tried-list {
  list-style: none;
  padding: 14px 18px;
  margin: 16px 0;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}
.tried-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.tried-list li:last-child { border-bottom: none; }
.tried-list li::before {
  content: "✓";
  color: #1a7a1a;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

/* ─── 타임라인 카드 ──────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.timeline-card {
  border-left: 5px solid #e00000;
  background: #fff;
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.timeline-card__month {
  font-size: 12px;
  font-weight: 900;
  color: #e00000;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.timeline-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.timeline-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── 성분 박스 ──────────────────────────────────── */
.ingredient-strip {
  background: var(--color-brand-light);
  border: 1px solid var(--color-brand-border);
  border-radius: 12px;
  padding: 18px;
  margin: 20px 0;
}
.ingredient-strip__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: 0.3px;
}
.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
}
.ingredient-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e00000;
  flex-shrink: 0;
  margin-top: 4px;
}
.ingredient-item__info { flex: 1; }
.ingredient-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.ingredient-item__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ingredient-item__point {
  font-size: 12px;
  font-weight: 700;
  color: #e00000;
  margin-top: 4px;
}

/* ─── 이벤트 블로그 글체 ─────────────────────────── */
.event-blog {
  background: #fdf8f0;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.event-blog p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 12px;
}
.event-blog p:last-child { margin-bottom: 0; }
.event-blog strong {
  color: var(--text-primary);
  font-weight: 700;
}
.event-blog__benefits {
  list-style: none;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  margin: 14px 0;
  border: 1px solid #e8dcc8;
}
.event-blog__benefits li {
  font-size: 15px;
  font-weight: 700;
  padding: 6px 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f2ebe0;
}
.event-blog__benefits li:last-child { border-bottom: none; }
.event-blog__benefits li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 900;
  flex-shrink: 0;
}
.event-blog__note {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.8;
}

/* ─── 이벤트 강화 배너 ──────────────────────────── */
.event-strong {
  background: linear-gradient(135deg, #d40000 0%, #b00000 100%);
  border-radius: 16px;
  padding: 26px 20px;
  margin: 32px 0;
  color: #fff;
  text-align: center;
}
.event-strong__label {
  display: inline-block;
  background: #fff;
  color: #d40000;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.event-strong__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.event-strong__benefits {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 16px;
  text-align: left;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}
.event-strong__benefits li {
  font-size: 15px;
  font-weight: 700;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-strong__benefits li::before {
  content: "✓";
  font-weight: 900;
  color: #fff176;
  font-size: 15px;
  flex-shrink: 0;
}
.event-strong__deadline {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.event-strong .cta-btn {
  background: #fff176;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 900;
  max-width: 100%;
}
.event-strong .cta-btn:hover {
  background: #ffe000;
  color: #1a1a1a;
}

/* ─── 광고 아님 디스클레이머 박스 ──────────────── */
.ad-disclaimer {
  background: #fff6f1;
  border: 1.5px solid #ee7733;
  border-left: 5px solid #ee7733;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0 24px;
}
.ad-disclaimer__title {
  font-size: 14px;
  font-weight: 900;
  color: #c2410c;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.ad-disclaimer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ad-disclaimer li {
  position: relative;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  padding: 4px 0 4px 18px;
}
.ad-disclaimer li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: #ee7733;
  font-weight: 900;
}
.ad-disclaimer strong {
  color: #c2410c;
  font-weight: 700;
}

/* ─── 파란 바 소제목 변주 ─────────────────────── */
.blog-body h2.h2--blue {
  border-left: 5px solid var(--color-brand);
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
}

/* ─── 비교표 ─────────────────────────────────── */
.compare-table-wrap {
  margin: 18px 0 24px;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.compare-table th,
.compare-table td {
  padding: 13px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.4;
}
.compare-table thead th {
  background: var(--bg-surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.compare-table thead th.compare-table__ours {
  background: var(--color-brand);
  color: #fff;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
}
.compare-table tbody td.compare-table__ours {
  background: var(--color-brand-light);
  font-weight: 700;
  color: var(--color-brand-dark);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-x {
  color: var(--text-muted);
  font-weight: 700;
}
.compare-o {
  color: #1a7a1a;
  font-weight: 900;
}

/* ─── 비포→애프터 수치 강조 ───────────────────── */
.ba-strip {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 20px 0 24px;
}
.ba-strip__col {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  padding: 16px 10px;
}
.ba-strip__col--before {
  background: #f4f4f4;
  border: 1px solid #e2e2e2;
}
.ba-strip__col--after {
  background: var(--color-brand-light);
  border: 1.5px solid var(--color-brand-border);
}
.ba-strip__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ba-strip__col--after .ba-strip__label {
  color: var(--color-brand);
}
.ba-strip__num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-muted);
}
.ba-strip__col--after .ba-strip__num {
  color: #e00000;
}
.ba-strip__desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}
.ba-strip__arrow {
  align-self: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ─── 카운트다운 타이머 ───────────────────────── */
.countdown {
  background: linear-gradient(135deg, #1f1f1f 0%, #3a1010 100%);
  border-radius: 16px;
  padding: 22px 18px;
  margin: 24px 0;
  text-align: center;
  color: #fff;
}
.countdown__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  color: #ffd9d9;
}
.countdown__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 64px;
}
.countdown__num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}
.countdown__unit-label {
  font-size: 11px;
  color: #ffb3b3;
  margin-top: 5px;
}
.countdown__sep {
  font-size: 28px;
  font-weight: 900;
  color: #e00000;
  padding-bottom: 14px;
}
.countdown__note {
  font-size: 13px;
  margin-top: 14px;
  color: #ffe8e8;
}
.countdown__note strong {
  color: #fff176;
  font-weight: 900;
}

/* ─── 모바일 ─────────────────────────────── */
@media (max-width: 480px) {
  .ad-disclaimer { padding: 14px 14px; }
  .compare-table th, .compare-table td { padding: 11px 6px; font-size: 13px; }
  .compare-table tbody td:first-child { font-size: 12px; }
  .ba-strip__num { font-size: 30px; }
  .ba-strip__arrow { font-size: 20px; }
  .countdown__unit { min-width: 54px; padding: 9px 8px; }
  .countdown__num { font-size: 26px; }
  .countdown__sep { font-size: 22px; }
  .blog-header__inner { padding: 0 14px; }
  .blog-header__avatar { width: 50px; height: 50px; font-size: 18px; }
  .blog-header__name { font-size: 15px; }
  .blog-post-title { font-size: 21px; line-height: 1.4; }
  .page-wrapper { padding: 0 14px; }
  .blog-body { font-size: 15px; }
  .blog-body h2 { font-size: 18px; }
  .cta-section { padding: var(--spacing-md) 14px; }
  .cta-btn { font-size: 15px; padding: 14px 20px; }
  .cta-section__price-now { font-size: 20px; }
  .product-highlight { padding: var(--spacing-sm) 14px; }
  .comment-card__body { padding-left: 0; margin-top: 6px; }
  .data-box { padding: var(--spacing-sm) 14px; }
  .kakao-chat { padding: 16px 12px; }
  .kakao-msg__content { max-width: 78%; }
  .event-notice { padding: var(--spacing-sm) 14px; }
  .event-notice__title { font-size: 16px; }
  .db-form { padding: var(--spacing-md) 14px; }
}
