:root {
  --dororo-bg: #f6f7fb;
  --dororo-surface: #ffffff;
  --dororo-ink: #111827;
  --dororo-muted: #6b7280;
  --dororo-line: #e5e7eb;
  --dororo-accent: #5b5cf0;
  --dororo-accent-2: #8b5cf6;
  --dororo-shadow: 0 20px 60px rgba(17,24,39,.10);
}

html { scroll-behavior: smooth; }
body.dororo-polished {
  margin: 0;
  overflow-x: hidden;
  background: var(--dororo-bg);
  color: var(--dororo-ink);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
body.dororo-polished * { box-sizing: border-box; }
body.dororo-polished img { max-width: 100%; height: auto; }
body.dororo-polished iframe, body.dororo-polished video { max-width: 100%; }
body.dororo-polished table { display: block; max-width: 100%; overflow-x: auto; }
body.dororo-polished pre { max-width: 100%; overflow-x: auto; }

.dororo-shell { min-height: 100vh; background: var(--dororo-bg); }
.dororo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229,231,235,.75);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.admin-bar .dororo-header { top: 32px; }
.dororo-header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dororo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dororo-ink);
  text-decoration: none;
}
.dororo-logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--dororo-accent), var(--dororo-accent-2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(91,92,240,.28);
}
.dororo-brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.dororo-brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.dororo-brand-copy small { margin-top: 5px; font-size: 12px; color: var(--dororo-muted); }
.dororo-nav { display: flex; align-items: center; gap: 8px; }
.dororo-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.dororo-nav a:hover { background: #f1f3f8; color: var(--dororo-accent); }

.dororo-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: center;
  gap: 52px;
}
.dororo-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--dororo-accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
}
.dororo-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 850;
}
.dororo-hero h1 em { font-style: normal; color: var(--dororo-accent); }
.dororo-hero-copy > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -.015em;
}
.dororo-hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.dororo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.dororo-btn:hover { transform: translateY(-2px); }
.dororo-btn-primary { background: var(--dororo-ink); color: #fff; box-shadow: 0 12px 30px rgba(17,24,39,.18); }
.dororo-btn-ghost { border: 1px solid var(--dororo-line); background: #fff; color: var(--dororo-ink); }

.dororo-hero-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(circle at 25% 25%, #e0e7ff 0, transparent 32%), radial-gradient(circle at 80% 30%, #ede9fe 0, transparent 35%), linear-gradient(150deg,#f8fafc,#eef2ff 65%,#f5f3ff);
  box-shadow: var(--dororo-shadow);
}
.dororo-orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .95; }
.dororo-orb-a { width: 210px; height: 210px; right: -48px; top: -36px; background: linear-gradient(145deg,#818cf8,#c4b5fd); }
.dororo-orb-b { width: 150px; height: 150px; left: -38px; bottom: -30px; background: linear-gradient(145deg,#c7d2fe,#ddd6fe); }
.dororo-hero-card {
  position: absolute;
  left: 44px;
  top: 70px;
  width: min(330px, calc(100% - 88px));
  padding: 26px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 50px rgba(80,70,160,.14);
  backdrop-filter: blur(10px);
}
.dororo-hero-card-secondary { left: auto; right: 34px; top: auto; bottom: 48px; width: 250px; }
.dororo-hero-card span, .dororo-hero-card small { display: block; color: var(--dororo-muted); font-size: 12px; }
.dororo-hero-card strong { display: block; margin: 8px 0 10px; font-size: 24px; letter-spacing: -.03em; }

.dororo-category-wrap,
.dororo-latest,
.dororo-guide {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.dororo-category-wrap { padding: 12px 0 54px; }
.dororo-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 24px;
}
.dororo-section-head.compact { margin-bottom: 18px; }
.dororo-section-head h2, .dororo-guide h2 { margin: 0; font-size: clamp(28px,3vw,40px); letter-spacing: -.04em; line-height: 1.15; }
.dororo-section-head > p { margin: 0 0 4px; color: var(--dororo-muted); font-size: 14px; }
.dororo-category-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.dororo-category-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--dororo-line);
  border-radius: 999px;
  background: #fff;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.dororo-category-pills a:hover { border-color: #c7d2fe; color: var(--dororo-accent); }
.dororo-category-pills span { color: #9ca3af; font-size: 12px; }

.dororo-latest { padding: 42px 0 80px; }
.dororo-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.dororo-card {
  overflow: hidden;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17,24,39,.045);
  transition: transform .22s ease, box-shadow .22s ease;
}
.dororo-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(17,24,39,.10); }
.dororo-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef2ff;
}
.dororo-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dororo-card:hover .dororo-card-media img { transform: scale(1.03); }
.dororo-card-media.is-placeholder { display: grid; place-items: center; background: linear-gradient(145deg,#e0e7ff,#f5f3ff); }
.dororo-placeholder-mark { font-size: 64px; font-weight: 900; color: rgba(91,92,240,.22); }
.dororo-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}
.dororo-card-body { padding: 21px 21px 22px; }
.dororo-card-meta { display: flex; gap: 10px; color: #9ca3af; font-size: 12px; }
.dororo-card h3 { margin: 12px 0 10px; font-size: 21px; line-height: 1.38; letter-spacing: -.03em; }
.dororo-card h3 a { color: var(--dororo-ink); text-decoration: none; }
.dororo-card p { margin: 0; color: #6b7280; font-size: 14px; line-height: 1.7; }
.dororo-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--dororo-accent); text-decoration: none; font-size: 13px; font-weight: 800; }

.dororo-empty { padding: 70px 20px; border: 1px dashed #cbd5e1; border-radius: 24px; background: #fff; text-align: center; }
.dororo-empty-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 18px; background: #eef2ff; color: var(--dororo-accent); font-weight: 900; font-size: 22px; }
.dororo-empty h3 { margin: 0 0 8px; font-size: 22px; }
.dororo-empty p { margin: 0; color: var(--dororo-muted); }

.dororo-guide {
  margin-bottom: 80px;
  padding: 42px;
  border-radius: 30px;
  background: #111827;
  color: #fff;
}
.dororo-guide .dororo-kicker { color: #a5b4fc; }
.dororo-guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 32px; }
.dororo-guide-grid > div { padding: 24px; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; background: rgba(255,255,255,.055); }
.dororo-guide-grid b { display: block; margin-bottom: 20px; color: #a5b4fc; font-size: 12px; }
.dororo-guide-grid strong { display: block; margin-bottom: 8px; font-size: 19px; }
.dororo-guide-grid span { display: block; color: #cbd5e1; font-size: 13px; line-height: 1.65; }

.dororo-footer { background: #fff; border-top: 1px solid var(--dororo-line); }
.dororo-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.dororo-footer strong { font-size: 18px; }
.dororo-footer p { margin: 8px 0 0; color: var(--dororo-muted); font-size: 13px; }
.dororo-footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.dororo-footer-links a { color: #4b5563; text-decoration: none; font-size: 13px; }
.dororo-copyright { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 18px 0 28px; border-top: 1px solid #f0f1f4; color: #9ca3af; font-size: 12px; }

/* 개별 글/아카이브에서 모바일 안정성 */
body.dororo-polished:not(.dororo-homepage) {
  overflow-wrap: anywhere;
}
body.dororo-polished:not(.dororo-homepage) .wp-site-blocks,
body.dororo-polished:not(.dororo-homepage) main {
  max-width: 100%;
}
body.dororo-polished:not(.dororo-homepage) .wp-block-post-content img,
body.dororo-polished:not(.dororo-homepage) .entry-content img,
body.dororo-polished:not(.dororo-homepage) article img {
  max-width: 100% !important;
  height: auto !important;
}
body.dororo-polished:not(.dororo-homepage) .wp-block-post-title,
body.dororo-polished:not(.dororo-homepage) .entry-title {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}
body.dororo-polished:not(.dororo-homepage) p,
body.dororo-polished:not(.dororo-homepage) li {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 980px) {
  .dororo-hero { grid-template-columns: 1fr; gap: 32px; padding-top: 62px; }
  .dororo-hero-panel { min-height: 330px; }
  .dororo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .dororo-guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  .admin-bar .dororo-header { top: 46px; }
}

@media (max-width: 680px) {
  .dororo-header-inner,
  .dororo-hero,
  .dororo-category-wrap,
  .dororo-latest,
  .dororo-guide,
  .dororo-footer-inner,
  .dororo-copyright { width: min(100% - 28px, 1180px); }
  .dororo-header-inner { height: 66px; }
  .dororo-brand-copy small { display: none; }
  .dororo-logo-mark { width: 38px; height: 38px; border-radius: 12px; }
  .dororo-nav { gap: 2px; }
  .dororo-nav a { padding: 8px 9px; font-size: 12px; }

  .dororo-hero { padding-top: 44px; padding-bottom: 42px; }
  .dororo-kicker { margin-bottom: 13px; font-size: 11px; }
  .dororo-hero h1 { font-size: clamp(38px, 12vw, 52px); line-height: 1.09; }
  .dororo-hero-copy > p { margin-top: 18px; font-size: 16px; line-height: 1.7; }
  .dororo-hero-actions { margin-top: 24px; flex-direction: column; }
  .dororo-btn { width: 100%; }

  .dororo-hero-panel { min-height: 290px; border-radius: 26px; }
  .dororo-hero-card { left: 20px; top: 42px; width: calc(100% - 40px); padding: 20px; border-radius: 20px; }
  .dororo-hero-card strong { font-size: 21px; }
  .dororo-hero-card-secondary { left: auto; right: 20px; bottom: 26px; top: auto; width: 70%; }

  .dororo-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .dororo-section-head > p { font-size: 13px; }
  .dororo-category-wrap { padding-bottom: 30px; }
  .dororo-category-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .dororo-category-pills::-webkit-scrollbar { display: none; }
  .dororo-category-pills a { flex: 0 0 auto; }

  .dororo-latest { padding: 30px 0 54px; }
  .dororo-grid { grid-template-columns: 1fr; gap: 16px; }
  .dororo-card { border-radius: 20px; }
  .dororo-card-body { padding: 18px; }
  .dororo-card h3 { font-size: 20px; }

  .dororo-guide { margin-bottom: 52px; padding: 28px 20px; border-radius: 24px; }
  .dororo-guide-grid { margin-top: 24px; }
  .dororo-guide-grid > div { padding: 20px; }

  .dororo-footer-inner { padding-top: 30px; flex-direction: column; gap: 22px; }
  .dororo-footer-links { gap: 12px 16px; }

  /* 모바일 게시글 안전장치 */
  body.dororo-polished:not(.dororo-homepage) .wp-site-blocks,
  body.dororo-polished:not(.dororo-homepage) main,
  body.dororo-polished:not(.dororo-homepage) article,
  body.dororo-polished:not(.dororo-homepage) .entry-content,
  body.dororo-polished:not(.dororo-homepage) .wp-block-post-content {
    max-width: 100% !important;
  }
  body.dororo-polished:not(.dororo-homepage) .wp-block-post-content,
  body.dororo-polished:not(.dororo-homepage) .entry-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.dororo-polished:not(.dororo-homepage) .wp-block-post-title,
  body.dororo-polished:not(.dororo-homepage) .entry-title {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.17 !important;
    letter-spacing: -.04em !important;
  }
  body.dororo-polished:not(.dororo-homepage) p,
  body.dororo-polished:not(.dororo-homepage) li {
    font-size: 16px;
    line-height: 1.75;
  }
}
