/* ── BLOG LIST HERO ── */
.blog-list-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-list-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(242,147,88,.09), transparent 70%);
  pointer-events: none;
}
.blog-hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw; font-weight: 700; font-style: italic;
  color: var(--terracotta); opacity: .04;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; letter-spacing: -6px;
}
.blog-hero-inner { position: relative; z-index: 2; }
.blog-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .9; letter-spacing: -3px; font-weight: 700;
  color: var(--terracotta);
}
.blog-hero-inner h1 em { color: var(--peach); font-style: italic; }
.blog-hero-inner p { margin: 18px auto 0; max-width: 480px; font-size: 15px; line-height: 1.75; opacity: .6; font-weight: 300; color: var(--orange); }

/* ── FILTERS ── */
.blog-filters { padding: 32px 0 0; }
.blog-filter-wrap { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.blog-flt {
  padding: 8px 20px; border-radius: 999px;
  border: 1px solid rgba(235,201,165,.5);
  font-size: 13px; color: var(--orange);
  text-decoration: none; transition: .25s;
}
.blog-flt:hover, .blog-flt.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── FEATURED ── */
.blog-featured { padding: 48px 0 0; }
.blog-feat-label { font-size: 11px; letter-spacing: 2px; font-weight: 600; color: var(--peach); margin-bottom: 20px; }
.blog-feat-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(235,201,165,.14);
  background: rgba(202,91,66,.04);
  text-decoration: none; transition: .4s;
  min-height: 340px;
}
.blog-feat-card:hover { border-color: rgba(242,147,88,.3); box-shadow: 0 20px 50px rgba(202,91,66,.15); transform: translateY(-4px); }
.blog-feat-img {
  background: linear-gradient(155deg, #CA5B42 0%, #7a2510 55%, #1a0d08 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.blog-feat-img-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px); font-style: italic; font-weight: 700;
  color: rgba(235,201,165,.15); letter-spacing: -3px; pointer-events: none;
}
.blog-feat-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  line-height: 1.15; letter-spacing: -.8px;
  color: var(--terracotta); margin-bottom: 14px;
}
.blog-feat-exc { font-size: 14px; line-height: 1.75; opacity: .62; color: var(--orange); font-weight: 300; }
.blog-read-more { margin-top: 22px; font-size: 13px; font-weight: 500; color: var(--orange); transition: .25s; }
.blog-feat-card:hover .blog-read-more { color: var(--terracotta); letter-spacing: .3px; }

/* ── GRID ── */
.blog-grid-section { padding: 48px 0 80px; }
.blog-grid-label { font-size: 11px; letter-spacing: 2px; font-weight: 600; color: var(--peach); margin-bottom: 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(235,201,165,.1);
  background: rgba(202,91,66,.03);
  text-decoration: none; transition: .35s; display: block;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(242,147,88,.28); box-shadow: 0 18px 48px rgba(202,91,66,.14); }
.blog-card-thumb {
  height: 190px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #CA5B42, #7a2510);
}
.blog-card-thumb-lbl {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-style: italic; font-weight: 700;
  color: rgba(255,255,255,.16); letter-spacing: -1px; pointer-events: none;
}
.blog-card-body { padding: 18px 20px 22px; }
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; line-height: 1.25;
  letter-spacing: -.3px; color: var(--orange); margin-bottom: 8px;
}
.blog-card-exc { font-size: 12px; line-height: 1.65; opacity: .55; color: var(--orange); }

/* ── SHARED: category badge, meta, dot ── */
.blog-cat {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 1.2px; font-weight: 600;
  background: rgba(252,125,69,.14); color: var(--orange);
  margin-bottom: 12px; text-decoration: none;
}
.blog-meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 12px; opacity: .45; color: var(--orange); }
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--peach); }

/* ── PAGINATION ── */
.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; }
.blog-pg {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(235,201,165,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--orange); text-decoration: none; transition: .25s;
}
.blog-pg.active, .blog-pg:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── EMPTY STATE ── */
.blog-empty { text-align: center; padding: 80px 0; opacity: .55; }
.blog-empty p { font-size: 16px; margin-bottom: 20px; color: var(--orange); }

/* ═══════════════════════════════
   DETAIL PAGE
═══════════════════════════════ */

/* ── HERO ── */
.art-hero {
  min-height: 500px;
  background: linear-gradient(160deg, #CA5B42 0%, #7a2510 40%, #1a0d08 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 80px; position: relative; overflow: hidden;
}
.art-hero-bg-word {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw; font-weight: 700; font-style: italic;
  color: rgba(235,201,165,.05); letter-spacing: -8px;
  white-space: nowrap; pointer-events: none;
}
.art-hero-inner { position: relative; z-index: 2; padding: 0 0 52px; max-width: 860px; }
.art-cat {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: 10px; letter-spacing: 1.5px; font-weight: 600;
  background: rgba(252,125,69,.22); color: #EBC9A5;
  margin-bottom: 20px; text-decoration: none;
}
.art-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px); line-height: .95;
  letter-spacing: -2px; font-weight: 700; color: #EBC9A5; margin-bottom: 20px;
}
.art-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: rgba(235,201,165,.55); flex-wrap: wrap; }
.art-author { display: flex; align-items: center; gap: 10px; }
.art-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0;
}
.dot-sep-light { width: 3px; height: 3px; border-radius: 50%; background: rgba(235,201,165,.4); }

/* ── BREADCRUMB ── */
.art-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid rgba(235,201,165,.1);
  font-size: 13px; opacity: .5; color: var(--orange);
}
.art-breadcrumb a { color: var(--orange); text-decoration: none; }
.art-breadcrumb a:hover { opacity: 1; }
.art-breadcrumb span { margin: 0 8px; }

/* ── BODY WRAP ── */
.art-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 64px 0 100px;
  align-items: start;
}

/* ── ARTICLE CONTENT ── */
.art-lead {
  font-size: 18px; line-height: 1.85; color: var(--terracotta);
  font-weight: 400; margin-bottom: 36px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(235,201,165,.15);
}
.art-body { color: var(--orange); }
.art-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; letter-spacing: -.8px;
  color: var(--terracotta); margin: 40px 0 16px;
}
.art-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: -.4px;
  color: var(--orange); margin: 28px 0 12px;
}
.art-body p { font-size: 15px; line-height: 1.85; opacity: .75; margin-bottom: 18px; }
.art-body ul, .art-body ol { padding-left: 22px; margin-bottom: 18px; }
.art-body li { font-size: 15px; line-height: 1.8; opacity: .72; margin-bottom: 6px; }
.art-body blockquote {
  margin: 32px 0; padding: 22px 28px;
  border-left: 3px solid var(--peach);
  background: rgba(202,91,66,.05); border-radius: 0 16px 16px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; line-height: 1.5; color: var(--terracotta);
}
.art-body img { width: 100%; border-radius: 16px; margin: 24px 0; }
.art-body .tip-box {
  margin: 28px 0; padding: 18px 22px; border-radius: 14px;
  background: rgba(65,197,142,.07); border: 1px solid rgba(65,197,142,.15);
}
.art-body .tip-box strong { font-size: 10px; letter-spacing: 1.5px; color: var(--green); display: block; margin-bottom: 6px; }

/* ── TAGS & SHARE ── */
.art-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(235,201,165,.1); }
.art-tag { padding: 6px 14px; border-radius: 999px; font-size: 12px; border: 1px solid rgba(235,201,165,.28); color: var(--orange); opacity: .65; }
.art-share { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 13px; opacity: .65; color: var(--orange); flex-wrap: wrap; }
.share-btn {
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(235,201,165,.38); background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 12px; color: var(--orange);
  cursor: pointer; text-decoration: none; transition: .25s;
}
.share-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── SIDEBAR ── */
.art-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  border-radius: 20px; border: 1px solid rgba(235,201,165,.1);
  background: rgba(202,91,66,.03); padding: 22px; margin-bottom: 16px;
}
.sw-title { font-size: 11px; letter-spacing: 2px; font-weight: 600; color: var(--peach); margin-bottom: 16px; }
.toc-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid rgba(235,201,165,.07);
  cursor: pointer; font-size: 13px; opacity: .62; transition: .2s; color: var(--orange);
}
.toc-item:hover { opacity: 1; color: var(--terracotta); }
.toc-item:last-child { border-bottom: none; }
.toc-num { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--peach); width: 18px; flex-shrink: 0; }
.related-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(235,201,165,.07);
  text-decoration: none; transition: .25s;
}
.related-item:hover { opacity: .8; }
.related-item:last-child { border-bottom: none; }
.ri-thumb { width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg,#CA5B42,#7a2510); }
.ri-cat { font-size: 10px; letter-spacing: 1px; color: var(--peach); font-weight: 600; margin-bottom: 4px; }
.ri-title { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; line-height: 1.25; color: var(--orange); }
.sidebar-cta {
  border-radius: 20px;
  background: linear-gradient(155deg, #CA5B42, #7a2510);
  padding: 26px 22px; text-align: center;
}
.sidebar-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #EBC9A5; line-height: 1.2; margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: rgba(235,201,165,.65); line-height: 1.6; }

/* ── NAV ACTIVE ── */
.nav-active { opacity: 1 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .blog-feat-card { grid-template-columns: 1fr; }
  .blog-feat-img { min-height: 220px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .art-wrap { grid-template-columns: 1fr; }
  .art-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .art-hero { min-height: 380px; }
  .art-hero-inner { padding: 0 0 36px; }
}