/* ═══════════ 카드형 CPA 스킨 (skin=tidy) — 팔레트 기반 재사용 틀 ═══════════ */
/* 화이트 베이스 + 흐르는 물결. body.tidy 스코프(타입 무관: catalog·region-catalog 공용). */
/* 색은 :root 기본값 → sites.yaml `palette:` 가 :root(나중 소스)로 덮어써 사이트별 테마. */
/* tidy365는 palette 없음 → 기본값(블루)이 곧 현재색이라 무변경. */

:root {
  --blue: #2563eb; --blue-d: #1d4ed8; --sky: #38bdf8; --aqua: #06b6d4;
  --wash: #eff6ff; --wash2: #e0f2fe; --ink: #0f172a; --muted: #5b6b82;
  --line: #e3eefb; --bg: #ffffff;
  --disp: "Gothic A1", "Pretendard", system-ui, sans-serif;
  --latin: "Outfit", "Gothic A1", sans-serif;
}
body.tidy {
  background: var(--bg); color: var(--ink);
  font-family: "Gothic A1", "Pretendard", system-ui, sans-serif;
  /* 가이드 글 페이지 base 컴포넌트 토큰을 팔레트 강조색으로 정렬(body.tidy 0,1,1 > base :root) */
  --c-accent: var(--blue); --c-accent-soft: var(--wash);
  --c-text: var(--ink); --c-muted: var(--muted); --c-line: var(--line);
  --c-bg: var(--bg); --c-bg-alt: var(--wash);
}
body.tidy main { padding-bottom: 0; }

/* ── 공유 헤더/푸터 톤 ── */
body.tidy .site-header {
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
body.tidy .site-header a,
body.tidy .brand { color: var(--ink); }
body.tidy .brand { font-family: var(--disp); font-weight: 900; letter-spacing: -.02em; }
body.tidy .site-footer,
body.tidy footer {
  position: relative; background: var(--wash); border-top: 1px solid var(--line); color: var(--muted);
}

.tidy { line-height: 1.7; }
.tidy em {
  font-style: normal;
  background: linear-gradient(100deg, var(--aqua), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── 히어로 ── */
.tidy-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 104px 22px 150px;
  background:
    radial-gradient(60% 70% at 50% -8%, rgba(56,189,248,.22) 0%, transparent 60%),
    radial-gradient(48% 56% at 86% 14%, rgba(6,182,212,.14) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 58%, var(--wash2) 100%);
}
.tidy-hero--sub { padding-top: 84px; padding-bottom: 116px; }
.tidy-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.tidy-eyebrow {
  display: inline-block; font-family: var(--latin); font-weight: 700;
  letter-spacing: .18em; font-size: .8rem; color: var(--blue);
  padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(37,99,235,.22); background: rgba(255,255,255,.7);
  margin-bottom: 22px;
}
.tidy-fresh {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content; margin: 0 auto 22px;
  font-family: var(--latin); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; color: var(--blue);
  padding: 5px 14px; border-radius: 999px;
  background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.32);
}
.tidy-fresh i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sky);
  animation: tidy-pulse 2s infinite;
}
@keyframes tidy-pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,189,248,.6); }
  70% { box-shadow: 0 0 0 8px rgba(56,189,248,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
}
.tidy-h1 {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2.1rem, 6.4vw, 3.5rem); line-height: 1.24;
  letter-spacing: -.03em; margin: 0 auto 18px; max-width: 18ch;
  text-wrap: balance; word-break: keep-all; color: var(--ink);
}
.tidy-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.85;
  max-width: 30rem; margin: 0 auto; text-wrap: balance; word-break: keep-all;
}
.tidy-hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px; font-size: .85rem; color: var(--muted); font-weight: 600;
}
.tidy-hero-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); }

/* ── 떠오르는 거품(클린 디테일) ── */
.tidy-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.tidy-bubbles span {
  position: absolute; bottom: -40px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(56,189,248,.35));
  border: 1px solid rgba(56,189,248,.35); opacity: .5;
  animation: tidy-float linear infinite;
}
.tidy-bubbles span:nth-child(1) { left: 8%;  width: 16px; height: 16px; animation-duration: 13s; }
.tidy-bubbles span:nth-child(2) { left: 26%; width: 10px; height: 10px; animation-duration: 17s; animation-delay: 3s; }
.tidy-bubbles span:nth-child(3) { left: 62%; width: 22px; height: 22px; animation-duration: 15s; animation-delay: 1.5s; }
.tidy-bubbles span:nth-child(4) { left: 80%; width: 12px; height: 12px; animation-duration: 19s; animation-delay: 5s; }
.tidy-bubbles span:nth-child(5) { left: 46%; width: 8px;  height: 8px;  animation-duration: 12s; animation-delay: 2.5s; }
@keyframes tidy-float {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  18% { opacity: .55; }
  100% { transform: translateY(-76vh) scale(1.1); opacity: 0; }
}

/* ── 흐르는 물결 3겹 ── */
.tidy-waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; height: 150px; pointer-events: none; }
.tidy-wave {
  position: absolute; left: 0; bottom: 0; width: 200%; height: 100%;
  animation: tidy-flow linear infinite;
}
.tidy-wave--1 { fill: #ffffff;            animation-duration: 11s; }
.tidy-wave--2 { fill: rgba(56,189,248,.45); animation-duration: 17s; animation-direction: reverse; }
.tidy-wave--3 { fill: rgba(37,99,235,.28);  animation-duration: 23s; }
@keyframes tidy-flow { to { transform: translateX(-50%); } }

/* ── 섹션 ── */
.tidy-section { max-width: 1040px; margin: 0 auto; padding: 60px 20px 76px; }
.tidy-section--guide { background: var(--wash); max-width: none; }
.tidy-section--guide > * { max-width: 1040px; margin-left: auto; margin-right: auto; }
.tidy-sec-head { text-align: center; margin-bottom: 36px; }
.tidy-kicker {
  display: block; font-family: var(--latin); font-weight: 700;
  letter-spacing: .24em; font-size: .78rem; color: var(--sky); margin-bottom: 8px;
}
.tidy-h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.05rem); margin: 0; letter-spacing: -.02em; }
.tidy-h2::after {
  content: ""; display: block; width: 46px; height: 4px; margin: 14px auto 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--sky), var(--blue));
}

/* ── 카드 ── */
.tidy-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 22px; }
.tidy-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 30px -16px rgba(37,99,235,.28);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: tidy-rise .55s both; animation-delay: calc(var(--i, 0) * 42ms);
}
.tidy-card:hover {
  transform: translateY(-5px); border-color: rgba(56,189,248,.6);
  box-shadow: 0 26px 46px -22px rgba(37,99,235,.45);
}
.tidy-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.tidy-card-media {
  position: relative; aspect-ratio: 16 / 10;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: var(--wash);
}
.tidy-card-media--blank {
  background-image:
    radial-gradient(120% 90% at 18% 0%, rgba(56,189,248,.5), transparent 60%),
    linear-gradient(135deg, var(--wash2), #f4faff);
}
.tidy-badge {
  position: absolute; left: 12px; top: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--latin); font-weight: 700; font-size: .68rem; letter-spacing: .06em;
  color: #fff; background: linear-gradient(100deg, var(--sky), var(--blue));
  padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(37,99,235,.6);
}
.tidy-badge svg { display: block; }
.tidy-badge--guide { background: linear-gradient(100deg, var(--aqua), var(--blue)); letter-spacing: .12em; }
.tidy-card-title {
  margin: 0 0 12px; color: var(--ink); font-weight: 700;
  font-size: 1.1rem; line-height: 1.42; word-break: keep-all;
}
.tidy-card-body { padding: 15px 17px 17px; border-top: 1px solid var(--line); }
.tidy-cta {
  display: block; text-align: center; text-decoration: none; font-weight: 800; font-size: .96rem;
  padding: 13px 18px; border-radius: 12px; color: #fff;
  background: linear-gradient(100deg, var(--sky), var(--blue));
  box-shadow: 0 12px 24px -12px rgba(37,99,235,.7);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.tidy-cta:hover { transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 16px 30px -12px rgba(37,99,235,.85); }

.tidy-foot { text-align: center; font-size: .8rem; color: var(--muted); max-width: 640px; margin: 36px auto 0; line-height: 1.6; }
.tidy-more { text-align: center; margin-top: 26px; }
.tidy-more a { color: var(--blue); text-decoration: none; font-weight: 800; }
.tidy-more a:hover { text-decoration: underline; }

@keyframes tidy-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .tidy-hero { padding: 78px 20px 120px; }
  .tidy-cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .tidy-wave, .tidy-bubbles span, .tidy-card, .tidy-fresh i { animation: none !important; }
  .tidy-bubbles { display: none; }
}

/* ── 개편: 우측 내비 ── */
body.tidy .primary-nav { justify-content: flex-end; align-items: center; }
body.tidy .primary-nav a { font-weight: 700; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
body.tidy .primary-nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }
/* ── 히어로 통계 줄 ── */
body.tidy .tidy-stats { display: flex; justify-content: center; flex-wrap: wrap; margin: 8px auto 0; max-width: 720px; }
body.tidy .tidy-stats .st { flex: 1; min-width: 120px; text-align: center; padding: 10px 8px; }
body.tidy .tidy-stats .st b { display: block; font-family: var(--latin); font-size: 1.7rem; font-weight: 800; color: var(--blue); line-height: 1.1; }
body.tidy .tidy-stats .st span { font-size: .85rem; color: var(--muted); }
body.tidy .tidy-stats .st + .st { border-left: 1px solid var(--line); }
/* (tidy-hero--sub 는 tidy.css 에 이미 존재 — 재정의 안 함) */
/* ── 업체보기 ── */
body.tidy .pt-wrap { max-width: 1080px; margin: 0 auto; padding: 32px 16px 60px; }
body.tidy .pt-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 0 0 26px; position: sticky; top: 64px; }
body.tidy .pt-chip { border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; font-size: .95rem; padding: 9px 18px; border-radius: 999px; text-decoration: none; }
body.tidy .pt-chip:hover { border-color: var(--sky); }
body.tidy .pt-count { opacity: .7; font-weight: 600; margin-left: 5px; }
body.tidy .pt-group { scroll-margin-top: 120px; margin: 0 0 40px; }
body.tidy .pt-group-title { text-align: left; margin: 0 0 16px; }
/* ── 비용표 ── */
body.tidy .cost-wrap { max-width: 880px; margin: 0 auto; padding: 32px 16px 60px; }
body.tidy .cost-block { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 8px 8px 4px; margin: 0 0 22px; box-shadow: 0 6px 22px rgba(37,99,235,.06); }
body.tidy .cost-block h3 { font-family: var(--disp); font-size: 1.15rem; font-weight: 800; color: var(--ink); margin: 14px 16px 6px; }
body.tidy .cost-table { width: 100%; border-collapse: collapse; }
body.tidy .cost-table th, body.tidy .cost-table td { padding: 13px 16px; text-align: left; font-size: .95rem; }
body.tidy .cost-table thead th { font-size: .8rem; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line); }
body.tidy .cost-table tbody tr + tr td { border-top: 1px solid var(--line); }
body.tidy .cost-table .price { font-weight: 800; color: var(--blue); white-space: nowrap; }
body.tidy .cost-note { font-size: .82rem; color: var(--muted); margin: 2px 16px 12px; }
body.tidy .cost-tips { background: var(--wash); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 8px 0 22px; }
body.tidy .cost-tips h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--ink); }
body.tidy .cost-tips li { margin: 6px 0; color: var(--ink); font-size: .94rem; }
body.tidy .cost-faq { max-width: 720px; margin: 0 auto; }
body.tidy .cost-faq .tidy-h2 { text-align: center; }
body.tidy .faq-q { font-weight: 800; color: var(--ink); margin: 16px 0 4px; }
body.tidy .faq-a { color: var(--muted); font-size: .94rem; margin: 0 0 4px; }

/* ── 신청현황 위젯(데스크톱 전용) ── */
#lead-widget { position: fixed; right: 18px; bottom: 18px; width: auto; max-width: 270px; z-index: 40;
  background: #fff; border: 1px solid #e3eefb; border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 36px rgba(15,23,42,.16); font-family: "Gothic A1","Pretendard",system-ui,sans-serif; }
#lead-widget.lw-open { width: 220px; }
#lead-widget .lw-head { display: flex; align-items: center; gap: 6px; width: 100%; padding: 11px 14px;
  font-family: inherit; font-weight: 800; font-size: .9rem; color: #0f172a; background: #fff; border: 0; cursor: pointer; text-align: left; }
#lead-widget.lw-open .lw-head { border-bottom: 1px solid #eef4fc; }
#lead-widget .lw-head i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex: none;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: lw-pulse 1.8s infinite; }
#lead-widget .lw-head em { color: #2563eb; font-style: normal; font-size: .8rem; }
#lead-widget .lw-chev { margin-left: auto; width: 7px; height: 7px; flex: none;
  border-right: 2px solid #94a3b8; border-bottom: 2px solid #94a3b8; transform: rotate(-135deg); transition: transform .2s; }
#lead-widget.lw-open .lw-chev { transform: rotate(45deg); }
#lead-widget .lw-list, #lead-widget .lw-cta { display: none; }
#lead-widget.lw-open .lw-list { display: block; max-height: 300px; overflow: hidden; }
#lead-widget.lw-open .lw-cta { display: block; }
#lead-widget .lw-row { display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  font-size: .82rem; border-bottom: 1px solid #f3f7fd; animation: lw-rise .4s ease; }
#lead-widget .lw-name { font-weight: 700; color: #0f172a; }
#lead-widget .lw-svc { color: #2563eb; font-weight: 600; }
#lead-widget .lw-time { margin-left: auto; color: #94a3b8; font-size: .76rem; }
#lead-widget .lw-cta { text-align: center; padding: 12px; background: linear-gradient(100deg,#38bdf8,#2563eb);
  color: #fff; font-weight: 800; text-decoration: none; font-size: .9rem; }
@keyframes lw-pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)} 70%{box-shadow:0 0 0 7px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }
@keyframes lw-rise { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
@media (max-width: 980px) { #lead-widget { display: none; } }

/* ── 모바일 햄버거 내비(CSS-only 토글, <=980px) ── */
@media (max-width: 980px) {
  body.tidy .nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 42px; height: 42px; cursor: pointer; }
  body.tidy .nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink);
    border-radius: 2px; margin: 0 auto; transition: transform .2s, opacity .2s; }
  body.tidy .primary-nav { display: none; flex-basis: 100%; flex-direction: column;
    align-items: stretch; gap: 0; padding: 4px 0 8px; }
  body.tidy .nav-toggle:checked ~ .primary-nav { display: flex; }
  body.tidy .primary-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  body.tidy .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.tidy .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  body.tidy .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── 서비스별 업체 미리보기: 한 줄(4칸) ── */
body.tidy .tidy-cards--svc { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 700px) { body.tidy .tidy-cards--svc { grid-template-columns: repeat(2, 1fr); } }

/* ── 서비스 카드 2D 애니메이션 아이콘 ── */
body.tidy .svc-media { display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(120% 90% at 18% 0%, rgba(56,189,248,.45), transparent 60%), linear-gradient(135deg, var(--wash2), #f4faff); }
body.tidy .svc-icon { width: 62%; max-width: 132px; height: auto; }
body.tidy .svc-bob { animation: svc-bob 3.2s ease-in-out infinite; }
@keyframes svc-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
body.tidy .svc-spark path { transform-box: fill-box; transform-origin: center; animation: svc-twinkle 2.4s ease-in-out infinite; }
body.tidy .svc-spark path:nth-child(2) { animation-delay: .6s; }
body.tidy .svc-spark path:nth-child(3) { animation-delay: 1.2s; }
@keyframes svc-twinkle { 0%,100% { opacity: .3; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }
body.tidy .svc-lines line { animation: svc-dash 1.5s linear infinite; }
@keyframes svc-dash { 0% { opacity: 0; transform: translateX(5px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateX(-5px); } }
@media (prefers-reduced-motion: reduce) {
  body.tidy .svc-bob, body.tidy .svc-spark path, body.tidy .svc-lines line { animation: none !important; }
}

/* ── 글 페이지: 가독성/히어로/인트로 ── */
body.tidy .post { max-width: 760px; margin: 0 auto; padding: 28px 20px 64px; }
body.tidy .post header h1 { font-size: 1.7rem; line-height: 1.32; font-weight: 800; color: var(--ink); margin: 6px 0; }
body.tidy .post-date { color: var(--muted); font-size: .85rem; }
body.tidy .post-hero { height: 260px; border-radius: 14px; background-size: contain; background-repeat: no-repeat; background-position: center; background-color: var(--wash); margin: 12px 0 24px; }
body.tidy .post-intro { background: var(--wash); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 0 0 26px; }
body.tidy .post-intro p { margin: 4px 0; color: var(--ink); line-height: 1.7; }
body.tidy .post-intro-cta { color: var(--blue); font-weight: 700; }
body.tidy .post-body { font-size: 1.06rem; line-height: 1.85; color: var(--ink); word-break: keep-all; }
body.tidy .post-body p { margin: 14px 0; }
body.tidy .post-body h2 { font-size: 1.4rem; font-weight: 800; margin: 34px 0 14px; color: var(--ink); }
body.tidy .post-body h3 { font-size: 1.15rem; font-weight: 700; margin: 22px 0 10px; color: var(--ink); }
body.tidy .post-body ul, body.tidy .post-body ol { padding-left: 22px; margin: 12px 0; }
body.tidy .post-body li { margin: 6px 0; }
body.tidy .post-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 18px 0; }
body.tidy .post-body blockquote { border-left: 4px solid var(--blue); padding: 6px 16px; color: var(--muted); margin: 16px 0; }
body.tidy .post-body table { border-collapse: collapse; width: 100%; margin: 16px 0; }
body.tidy .post-body th, body.tidy .post-body td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }
body.tidy .faq { margin: 36px 0 0; }
body.tidy .faq dt { font-weight: 800; color: var(--ink); margin: 16px 0 4px; }
body.tidy .faq dd { color: var(--muted); margin: 0 0 4px; }
body.tidy .post-more { margin: 28px 0 0; }
body.tidy .post-more a { color: var(--blue); font-weight: 700; text-decoration: none; }
/* ── 글 내 CTA 카드 ── */
body.tidy .post-cta { max-width: 760px; margin: 26px auto; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; background: #fff; box-shadow: 0 10px 30px rgba(37,99,235,.10); }
body.tidy .post-cta--bg { position: relative; background-size: cover; background-position: center top; background-repeat: no-repeat; background-color: var(--wash); }
body.tidy .post-cta-top { position: relative; height: 280px; }
body.tidy .post-cta-top::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); }
body.tidy .post-cta-body { padding: 18px 20px 22px; text-align: center; }
body.tidy .post-cta--bg .post-cta-body { position: relative; z-index: 1; background: #fff; padding-top: 6px; }
body.tidy .post-cta-head { font-family: var(--disp); font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: 0 0 12px; }
body.tidy .post-cta-benefits { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
body.tidy .post-cta-benefits li { background: var(--wash); color: var(--blue); font-weight: 700; font-size: .86rem; padding: 6px 12px; border-radius: 999px; }
body.tidy .post-cta-sp { display: inline-block; background: #16a34a; color: #fff; font-weight: 700; font-size: .9rem; padding: 8px 16px; border-radius: 8px; margin: 0 0 10px; animation: sp-blink 1.1s ease-in-out infinite; }
body.tidy .post-cta-sp:empty { display: none; }
body.tidy .post-cta-timer { color: var(--muted); font-size: .88rem; margin: 0 0 14px; min-height: 1.2em; }
body.tidy .post-cta-btn { display: block; padding: 15px; background: linear-gradient(100deg, var(--sky), var(--blue));
  color: #fff; font-weight: 800; text-decoration: none; border-radius: 12px; font-size: 1.02rem; }

/* ── CTA 소셜프루프 깜빡임 ── */
@keyframes sp-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { body.tidy .post-cta-sp { animation: none !important; } }
