:root {
  --bg: #fdfcfb;
  --text: #2d2926;
  --accent: #b68c5a;
  --accent-light: #e6dfd6;
  --premium-dark: #1f1d1a;
  --premium-gold: #d7b98a;
  --white: #fff;

  --shadow-soft: 0 10px 25px rgba(0,0,0,.05);
  --shadow: 0 15px 35px rgba(0,0,0,.08);
  --shadow-premium: 0 20px 50px rgba(182,140,90,.15);

  --transition: .35s cubic-bezier(.4, 0, .2, 1);

  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

section {
  padding: 60px 0;
}

/* FONTS */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--premium-dark);
  margin-bottom: 1.5rem;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* EDITORIAL BLOCKQUOTE */

.rich-text-content blockquote {
  margin: 3rem 0;
  padding: 1.6rem 2rem 1.6rem 2.4rem;
  font-size: 1.15rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--premium-dark);
  background: linear-gradient(135deg, rgba(182, 140, 90, .10), rgba(182, 140, 90, .03));
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
  position: relative;
}

.rich-text-content blockquote::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -8px;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .35;
}

.rich-text-content blockquote p { margin: 0; }

.rich-text-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: .85rem;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .8;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .editorial-img-container {
    margin: 2.5rem 0;
  }

}