/* =====================================================================
   DAVID CLARKE — DESIGN SYSTEM  (new upmarket direction)
   Scoped under .dc-mock so it can coexist with the existing site CSS.
   Loaded ONLY on pages using the new templates (see functions.php enqueue).
   Fonts (Playfair Display + Poppins) are enqueued separately.
   ===================================================================== */

:root {
  /* palette — restrained: warm neutrals + navy depth + one magenta accent */
  --dc-navy:        #043C64;
  --dc-navy-deep:   #052e4b;
  --dc-magenta:     #90224A;
  --dc-magenta-dk:  #73183a;
  --dc-ink:         #16242f;
  --dc-body:        #55606b;
  --dc-muted:       #8b95a0;
  --dc-cream:       #f7f4ef;   /* warm off-white section bg */
  --dc-cream-deep:  #efe9df;
  --dc-line:        #e7e1d6;   /* hairline borders */
  --dc-white:       #ffffff;
  --dc-gold:        #c2a161;   /* muted star gold */
  /* type */
  --dc-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --dc-sans:  'Poppins', system-ui, -apple-system, sans-serif;
  /* rhythm */
  --dc-maxw: 1200px;
  --dc-section-y: 110px;
}

/* ---- shared primitives ---- */
.dc-mock { font-family: var(--dc-sans); color: var(--dc-body); }
.dc-mock *, .dc-mock *::before, .dc-mock *::after { box-sizing: border-box; }
.dc-section { padding: var(--dc-section-y) 24px; }
.dc-container { max-width: var(--dc-maxw); margin: 0 auto; }
.dc-center { text-align: center; }
.dc-eyebrow {
  display: inline-block;
  font-family: var(--dc-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dc-magenta);
  margin: 0 0 18px;
}
.dc-display {
  font-family: var(--dc-serif);
  font-weight: 600;
  color: var(--dc-navy);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0;
}
.dc-h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.dc-h2 em { font-style: italic; color: var(--dc-magenta); }
.dc-lead {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--dc-body);
  max-width: 620px;
  margin: 20px 0 0;
  font-weight: 300;
}
.dc-center .dc-lead { margin-left: auto; margin-right: auto; }

/* buttons — refined, letter-spaced */
.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dc-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 38px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  line-height: 1;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.dc-btn:hover { transform: translateY(-2px); }
.dc-btn--primary { background: var(--dc-magenta); color: #fff; }
.dc-btn--primary:hover { background: var(--dc-magenta-dk); color: #fff; }
.dc-btn--navy { background: var(--dc-navy); color: #fff; }
.dc-btn--navy:hover { background: var(--dc-navy-deep); color: #fff; }
.dc-btn--ghost { background: transparent; color: var(--dc-navy); border-color: var(--dc-line); }
.dc-btn--ghost:hover { background: var(--dc-navy); color: #fff; border-color: var(--dc-navy); }
.dc-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.dc-btn--ghost-light:hover { background: #fff; color: var(--dc-navy); border-color: #fff; }

/* subtle reveal-on-scroll (only hides when JS present, so no-JS stays visible) */
.dc-js .dc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.dc-js .dc-reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero-banner { position: relative; }
.hero-autumn-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(4,24,40,.42) 0%, rgba(4,24,40,.30) 45%, rgba(4,24,40,.55) 100%);
}
.hero-content { z-index: 2; }

/* hero text block — wide enough for the 3-line headline, centred */
.hero-inner { max-width: 1040px; margin-left: auto; margin-right: auto; }

.hero-content .hero-eyebrow {
  display:block; font-family: var(--dc-sans); font-size:0.74rem; font-weight:600;
  letter-spacing:0.28em; text-transform:uppercase; color:#fff; opacity:.85; margin:0 0 18px;
}
.hero-content h1 {
  font-family: var(--dc-serif) !important;
  font-weight: 600 !important;
  font-size: clamp(2.5rem, 5vw, 4.1rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0 0 18px;
}
.hero-content h1 .nowrap { white-space: nowrap; }

/* hero paragraph — narrower, centred under the headline */
.hero-content > .hero-inner > p,
.hero-inner > p {
  font-family: var(--dc-sans);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #fff;
  opacity: .92;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { margin-top: 26px; }
.hero-buttons .valuation-button {
  display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--dc-sans); font-size:0.82rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; text-decoration:none;
  padding:17px 38px; border-radius:4px; line-height:1;
  background:#fff; color:var(--dc-navy); border:1.5px solid #fff;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.hero-buttons .valuation-button:hover { transform: translateY(-2px); background:var(--dc-magenta); border-color:var(--dc-magenta); color:#fff; }

/* ---- frosted hero search bar — centred ---- */
.hero-search {
  background: rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.20);
  padding: 12px; margin: 26px auto 20px; max-width: 760px;
}
.hero-search__row { display: flex; gap: 10px; align-items: stretch; }
.hero-search__tabs { display: flex; gap: 6px; flex: 0 0 auto; }
.hero-search__tab {
  border: 0; cursor: pointer; font-family: var(--dc-sans); font-weight: 600;
  font-size: 13px; letter-spacing:.04em; padding: 0 18px; border-radius: 4px;
  background: rgba(255,255,255,0.88); color: var(--dc-navy);
}
.hero-search__tab.is-active { background: var(--dc-magenta); color: #fff; }
.hero-search__keyword {
  flex: 1 1 auto; min-width: 0; height: 50px; border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px; padding: 0 16px; font-size: 15px; font-family: var(--dc-sans);
  color: #222; background: rgba(255,255,255,0.94); box-sizing: border-box;
}
.hero-search__keyword::placeholder { color: #5a5f66; }
.hero-search__submit {
  flex: 0 0 auto; height: 50px; border: 0; cursor: pointer; background: var(--dc-navy);
  color: #fff; font-weight: 600; font-size: 13px; letter-spacing:.1em; text-transform:uppercase;
  padding: 0 30px; border-radius: 4px; font-family: var(--dc-sans);
}
.hero-search__submit:hover { background: var(--dc-navy-deep); }
@media (max-width: 768px) {
  .hero-search { margin: 18px auto; }
  .hero-search__row { flex-wrap: wrap; }
  .hero-search__tabs { flex: 1 1 100%; }
  .hero-search__tab { flex: 1 1 auto; padding: 12px 18px; }
  .hero-search__keyword, .hero-search__submit { flex: 1 1 100%; }
}

/* =====================================================================
   JUST LISTED  (property row)
   ===================================================================== */
.dc-listings { background: var(--dc-white); }
.dc-listings .propertyhive-recent-properties-shortcode { max-width: var(--dc-maxw); margin: 44px auto 0; }
.dc-listings .properties {
  display: flex !important; flex-wrap: wrap; gap: 28px; margin: 0; padding: 0; list-style: none;
}
.dc-listings .properties li.property {
  width: calc((100% - 84px) / 4) !important; max-width: calc((100% - 84px) / 4) !important;
  margin: 0 !important; padding: 0 !important; float: none !important; list-style: none;
  background: #fff; border: 1px solid var(--dc-line); border-radius: 6px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,38,55,.05); transition: transform .3s ease, box-shadow .3s ease;
}
.dc-listings .properties li.property:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(16,38,55,.12); }
.dc-listings .properties li.property .thumbnail { position: relative; }
.dc-listings .properties li.property img { width: 100%; height: auto; display: block; }
.dc-listings .properties li.property .details { padding: 22px 20px 24px; }
.dc-listings .properties li.property .details h3 { margin: 0 0 10px; font-size: 1.02rem; line-height: 1.35; }
.dc-listings .properties li.property .details h3 a { color: var(--dc-navy); text-decoration: none; font-weight: 600; }
.dc-listings .properties li.property .details .price { color: var(--dc-magenta); font-weight: 700; font-size: 1.15rem; }
.dc-listings .properties li.property .details .property-type { color: var(--dc-muted); font-size: .9rem; margin-top: 4px; }
@media (max-width: 1024px) {
  .dc-listings .properties li.property { width: calc((100% - 28px) / 2) !important; max-width: calc((100% - 28px) / 2) !important; }
}
@media (max-width: 600px) {
  .dc-listings .properties li.property { width: 100% !important; max-width: 100% !important; }
}

/* =====================================================================
   WHY SELL  (feature cards)
   ===================================================================== */
.dc-why { background: var(--dc-cream); }
.dc-why .dc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px; margin-top: 56px;
}
.dc-feature {
  background: #fff; border: 1px solid var(--dc-line); border-radius: 8px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dc-feature:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,38,55,.10); }
.dc-feature img { width: 100%; height: 220px; object-fit: cover; display: block; }
.dc-feature .dc-feature-body { padding: 26px 26px 30px; }
.dc-feature h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.4rem; color: var(--dc-navy);
  margin: 0 0 12px; line-height: 1.25;
}
.dc-feature p { font-size: .96rem; line-height: 1.7; color: var(--dc-body); margin: 0; font-weight: 300; }

/* =====================================================================
   NO SALE NO FEE  (editorial split)
   ===================================================================== */
.dc-nofee { background: var(--dc-white); }
.dc-split { display: flex; flex-wrap: wrap; align-items: center; gap: 64px; }
.dc-split__text { flex: 1 1 460px; min-width: 280px; }
.dc-split__media { flex: 1 1 460px; min-width: 280px; }
.dc-split__media img {
  width: 100%; display: block; border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16,38,55,.16);
}
.dc-nofee .dc-lead { margin-bottom: 34px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.dc-reviews { background: var(--dc-cream); }
.dc-reviews .dc-stars-top { color: var(--dc-gold); letter-spacing: 3px; font-size: 1.1rem; margin: 14px 0 0; }
.dc-reviews .dc-grid {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; margin-top: 54px;
}
.dc-review {
  background: #fff; border: 1px solid var(--dc-line); border-radius: 8px; width: 340px;
  padding: 34px 30px 28px; text-align: left; position: relative;
}
.dc-review::before {
  content: "\201C"; font-family: var(--dc-serif); color: var(--dc-magenta);
  font-size: 4rem; line-height: 1; position: absolute; top: 14px; left: 22px; opacity: .18;
}
.dc-review p.dc-quote {
  font-family: var(--dc-serif); font-style: italic; font-size: 1.08rem; line-height: 1.6;
  color: var(--dc-ink); margin: 18px 0 0; position: relative;
}
.dc-review .dc-reviewer { margin: 18px 0 6px; font-weight: 600; color: var(--dc-navy); font-size: .95rem; }
.dc-review .dc-stars { color: var(--dc-gold); letter-spacing: 2px; font-size: 1rem; }
.dc-reviews .dc-reviews-cta { margin-top: 64px; }
/* =====================================================================
   HELP / VIDEO  (intro split — used on Sellers & Landlords pages)
   ===================================================================== */
.dc-help { background: var(--dc-white); }
.dc-help .dc-video {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 14px; box-shadow: 0 24px 60px rgba(16,38,55,.16);
}
.dc-help .dc-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =====================================================================
   LANDLORD SERVICES  (package cards + compliance band)
   ===================================================================== */
.dc-services { background: var(--dc-white); }
.dc-services .dc-lead { margin-bottom: 56px; }
.dc-packages {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px; text-align: left;
}
.dc-package {
  background: #fff; border: 1px solid var(--dc-line); border-radius: 8px;
  padding: 34px 32px 36px; transition: transform .3s ease, box-shadow .3s ease;
}
.dc-package:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,38,55,.10); }
.dc-package--feature { background: var(--dc-cream); border-color: var(--dc-cream-deep); }
.dc-package h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.4rem;
  color: var(--dc-navy); margin: 0 0 12px; line-height: 1.25;
}
.dc-package > p { font-size: .96rem; line-height: 1.7; color: var(--dc-body); margin: 0; font-weight: 300; }
.dc-package ul { margin: 18px 0 0; padding: 0; list-style: none; }
.dc-package li {
  position: relative; padding: 0 0 0 26px; margin: 0 0 10px;
  font-size: .92rem; line-height: 1.6; color: var(--dc-body); font-weight: 300;
}
.dc-package li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--dc-magenta);
}
.dc-package__note { margin-top: 16px; font-size: .82rem; color: var(--dc-muted); line-height: 1.6; }

.dc-compliance {
  max-width: var(--dc-maxw); margin: 56px auto 0;
  background: var(--dc-cream); border: 1px solid var(--dc-cream-deep);
  border-radius: 8px; padding: 34px 36px; text-align: left;
}
.dc-compliance h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.3rem;
  color: var(--dc-navy); margin: 0 0 18px;
}
.dc-compliance__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 34px;
}
.dc-compliance ul { margin: 0; padding: 0; list-style: none; }
.dc-compliance li {
  position: relative; padding: 0 0 0 24px; margin: 0 0 9px;
  font-size: .9rem; line-height: 1.55; color: var(--dc-body); font-weight: 300;
}
.dc-compliance li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--dc-navy);
}

/* =====================================================================
   ABOUT — intro story + team
   ===================================================================== */
.dc-h1 { font-size: clamp(2.4rem, 4.4vw, 3.4rem); }

.dc-intro { background: var(--dc-white); }
.dc-intro .dc-eyebrow { margin-bottom: 14px; }
.dc-prose { margin: 22px 0 0; }
.dc-prose p {
  font-size: 1.02rem; line-height: 1.8; color: var(--dc-body); font-weight: 300; margin: 0 0 18px;
}
.dc-prose p:first-child { font-size: 1.12rem; color: var(--dc-ink); }
.dc-prose .dc-btn { margin-top: 10px; }

.dc-team { background: var(--dc-cream); }
.dc-team .dc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px 40px; margin-top: 56px; text-align: left;
}
.dc-member img {
  width: 100%; display: block; border-radius: 8px; aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: 0 14px 36px rgba(16,38,55,.10);
}
.dc-member h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.3rem; color: var(--dc-navy);
  margin: 20px 0 2px; line-height: 1.2;
}
.dc-member .dc-role {
  font-family: var(--dc-sans); font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dc-magenta); margin: 0 0 12px;
}
.dc-member p { font-size: .93rem; line-height: 1.7; color: var(--dc-body); font-weight: 300; margin: 0; }
.dc-team-cta { margin-top: 64px; }

/* =====================================================================
   CONTACT — intro + office card + enquiry form
   ===================================================================== */
.dc-contact { background: var(--dc-cream); }
.dc-enquiry { background: var(--dc-white); }

/* inline links within contact prose */
.dc-prose a:not(.dc-btn),
.dc-contact-methods a,
.dc-contact-card a { color: var(--dc-magenta); text-decoration: none; font-weight: 500; }
.dc-prose a:not(.dc-btn):hover,
.dc-contact-methods a:hover,
.dc-contact-card a:hover { text-decoration: underline; }

.dc-contact-methods {
  margin: 22px 0 0; font-size: 1.02rem; line-height: 1.9; color: var(--dc-body); font-weight: 300;
}

.dc-contact-card {
  background: #fff; border: 1px solid var(--dc-line); border-radius: 8px;
  padding: 28px 30px; margin: 28px 0 32px; text-align: left;
}
.dc-contact-card h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.2rem; color: var(--dc-navy); margin: 0 0 10px;
}
.dc-contact-card p { font-size: .96rem; line-height: 1.7; color: var(--dc-body); font-weight: 300; margin: 0; }
.dc-contact-card ul { list-style: none; padding: 0; margin: 0; font-size: .96rem; line-height: 1.95; color: var(--dc-body); font-weight: 300; }
.dc-contact-card ul li span { color: var(--dc-navy); font-weight: 500; }
.dc-contact-card hr { border: 0; border-top: 1px solid var(--dc-line); margin: 20px 0; }

/* enquiry form panel */
.dc-form-card {
  background: var(--dc-cream); border: 1px solid var(--dc-cream-deep); border-radius: 10px;
  padding: 34px 32px;
}
.dc-form-card .dc-display { margin-bottom: 6px; }

/* =====================================================================
   BLOG LISTING  (editorial: lead post + card grid)  — home.php
   ===================================================================== */
.dc-blog { background: var(--dc-white); }

/* read-more link (shared) */
.dc-readmore {
  font-family: var(--dc-sans); font-size: .76rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dc-magenta); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.dc-readmore:hover { color: var(--dc-magenta-dk); }
.dc-post-meta {
  font-family: var(--dc-sans); font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dc-magenta); margin: 0 0 12px;
}

/* lead / featured post */
.dc-blog-lead {
  display: grid; grid-template-columns: 1.12fr 1fr; gap: 50px; align-items: center;
  margin-top: 58px; text-align: left;
}
.dc-blog-lead__media { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(16,38,55,.16); }
.dc-blog-lead__media img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.dc-blog-lead:hover .dc-blog-lead__media img { transform: scale(1.03); }
.dc-blog-lead h2 {
  font-family: var(--dc-serif); font-weight: 600; font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.18; color: var(--dc-navy); margin: 0 0 16px;
}
.dc-blog-lead h2 a { color: inherit; text-decoration: none; }
.dc-blog-lead h2 a:hover { color: var(--dc-magenta); }
.dc-blog-lead p { font-size: 1.04rem; line-height: 1.75; color: var(--dc-body); font-weight: 300; margin: 0 0 24px; }

/* card grid */
.dc-blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px;
  margin-top: 64px; text-align: left;
}
.dc-blog-card {
  background: #fff; border: 1px solid var(--dc-line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.dc-blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,38,55,.10); }
.dc-blog-card__media { display: block; overflow: hidden; }
.dc-blog-card__media img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s ease; }
.dc-blog-card:hover .dc-blog-card__media img { transform: scale(1.04); }
.dc-blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dc-blog-card h3 {
  font-family: var(--dc-serif); font-weight: 600; font-size: 1.3rem; line-height: 1.3;
  color: var(--dc-navy); margin: 0 0 12px;
}
.dc-blog-card h3 a { color: inherit; text-decoration: none; }
.dc-blog-card h3 a:hover { color: var(--dc-magenta); }
.dc-blog-card p { font-size: .95rem; line-height: 1.7; color: var(--dc-body); font-weight: 300; margin: 0 0 18px; }
.dc-blog-card .dc-readmore { margin-top: auto; }

/* pagination */
.dc-pagination { margin-top: 70px; }
.dc-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.dc-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px;
  padding: 0 14px; border: 1px solid var(--dc-line); border-radius: 4px; color: var(--dc-navy);
  text-decoration: none; font-weight: 600; font-size: .9rem; font-family: var(--dc-sans);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.dc-pagination .page-numbers:hover { background: var(--dc-navy); color: #fff; border-color: var(--dc-navy); }
.dc-pagination .page-numbers.current { background: var(--dc-magenta); color: #fff; border-color: var(--dc-magenta); }
.dc-pagination .page-numbers.dots { border: 0; min-width: 0; }

.dc-blog-empty { margin-top: 50px; font-size: 1.05rem; color: var(--dc-body); font-weight: 300; }

@media (max-width: 768px) {
  .dc-blog-lead { grid-template-columns: 1fr; gap: 28px; }
}

/* =====================================================================
   SINGLE BLOG POST  (content-single.php)
   ===================================================================== */
.dc-single { background: var(--dc-white); }
.dc-article { margin: 0; }
.dc-article__inner { max-width: 760px; margin: 0 auto; }

.dc-article__header { text-align: center; }
.dc-article__title { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 0; }
.dc-article__meta {
  font-family: var(--dc-sans); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 500; color: var(--dc-muted); margin: 20px 0 0;
}
.dc-article__meta a { color: var(--dc-magenta); text-decoration: none; }

.dc-article__hero {
  margin: 44px 0 0; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(16,38,55,.16);
}
.dc-article__hero img { width: 100%; display: block; }

/* share row */
.dc-share { margin: 34px 0 0; display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.dc-share__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dc-muted); font-weight: 600; margin-right: 4px; }
.dc-share a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; text-decoration: none; color: #fff; font-size: 15px; transition: transform .2s ease, opacity .2s ease;
}
.dc-share a:hover { transform: translateY(-2px); opacity: .9; }
.dc-share .s-facebook { background: #1877f2; }
.dc-share .s-instagram { background: #E1306C; }
.dc-share .s-x { background: #111; }
.dc-share .s-whatsapp { background: #25D366; }
.dc-share .s-email { background: var(--dc-navy); }

/* rich-text body (the_content) */
.dc-rte { margin: 44px 0 0; font-size: 1.075rem; line-height: 1.85; color: var(--dc-ink); font-weight: 300; }
.dc-rte p { margin: 0 0 1.4em; }
.dc-rte h2 { font-family: var(--dc-serif); font-weight: 600; font-size: 1.8rem; line-height: 1.25; color: var(--dc-navy); margin: 1.8em 0 .55em; }
.dc-rte h3 { font-family: var(--dc-serif); font-weight: 600; font-size: 1.4rem; line-height: 1.3; color: var(--dc-navy); margin: 1.6em 0 .5em; }
.dc-rte h4 { font-family: var(--dc-sans); font-weight: 600; font-size: 1.12rem; color: var(--dc-navy); margin: 1.5em 0 .5em; }
.dc-rte a { color: var(--dc-magenta); text-decoration: underline; text-underline-offset: 2px; }
.dc-rte a:hover { color: var(--dc-magenta-dk); }
.dc-rte strong { font-weight: 600; color: var(--dc-ink); }
.dc-rte ul, .dc-rte ol { margin: 0 0 1.4em; padding-left: 1.35em; }
.dc-rte li { margin: 0 0 .55em; }
.dc-rte img { max-width: 100%; height: auto; border-radius: 8px; display: block; margin: 1.8em auto; }
.dc-rte figure { margin: 1.8em 0; }
.dc-rte figcaption { font-size: .85rem; color: var(--dc-muted); text-align: center; margin-top: 8px; }
.dc-rte blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--dc-magenta);
  font-family: var(--dc-serif); font-style: italic; font-size: 1.22rem; line-height: 1.5; color: var(--dc-navy);
}
.dc-rte blockquote p:last-child { margin-bottom: 0; }
.dc-rte hr { border: 0; border-top: 1px solid var(--dc-line); margin: 2.2em 0; }

/* article footer */
.dc-article__footer {
  max-width: 760px; margin: 50px auto 0; padding-top: 30px; border-top: 1px solid var(--dc-line);
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.dc-article__tags { font-size: .85rem; color: var(--dc-muted); }
.dc-article__tags a { color: var(--dc-body); text-decoration: none; }
.dc-article__tags a:hover { color: var(--dc-magenta); }