/* ============================================================
   MAYFAIR PLACE — Journal Article Template
   ============================================================ */

/* ---------- Hero ---------- */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  overflow: hidden;
}
.article-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
}

/* ---------- Title block (on cream, below banner) ---------- */
.article-head {
  background: var(--cream);
  text-align: center;
  padding: 64px 48px 20px;
}
.article-head__eyebrow {
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 22px;
}
.article-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 auto 22px;
}
.article-head__meta {
  font-size: 14px;
  font-weight: 300;
  color: #9B9B9B;
  letter-spacing: 0.02em;
}

/* ---------- Body ---------- */
.article-body {
  background: var(--cream);
  padding: 30px 48px 100px;
}
.article-body__inner {
  max-width: 680px;
  margin: 0 auto;
}
.article-body__lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 40px;
}
.article-body__inner p {
  font-size: clamp(15px, 1.29vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 26px;
}
.article-body__inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--ink);
  line-height: 1.2;
  margin: 52px 0 22px;
}
.article-body__inner h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--ink);
  margin: 38px 0 16px;
}
.article-body__inner a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.article-body__inner a:hover { color: var(--terracotta); }
.article-body__inner strong { font-weight: 400; color: var(--ink); }

.article-body__inner ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.article-body__inner li {
  font-size: clamp(15px, 1.29vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  padding: 0 0 14px 24px;
  position: relative;
}
.article-body__inner li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--terracotta);
  transform: rotate(45deg);
}

/* Pull rule between major sections */
.article-rule {
  width: 60px; height: 1px;
  background: var(--terracotta);
  margin: 8px auto 0;
}

/* ---------- CTA ---------- */
.article-cta {
  background: var(--taupe);
  text-align: center;
  padding: 90px 48px;
}
.article-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 26px);
  color: var(--ink);
  margin-bottom: 20px;
}
.article-cta__sub {
  font-size: clamp(15px, 1.29vw, 19px);
  font-weight: 300;
  color: #6B6B6B;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.article-cta .btn { }

/* ---------- Further reading ---------- */
.further {
  background: var(--cream);
  padding: 90px 48px 110px;
}
.further__head {
  text-align: center;
  margin-bottom: 56px;
}
.further__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 24px);
  color: var(--ink);
}
.further-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.further-card {
  background: #FBF8F2;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.further-card__img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.further-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.further-card:hover .further-card__img img { transform: scale(1.05); }
.further-card__body { padding: 26px 28px 30px; }
.further-card__cat {
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  display: block;
}
.further-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--ink);
  line-height: 1.25;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .further-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .article-hero { height: 48vh; min-height: 340px; }
  .article-body { padding: 24px 24px 72px; }
  .article-head { padding: 48px 24px 16px; }
}
.article-head__byline { font-size: 13px; font-weight: 300; color: #9B9B9B; letter-spacing: 0.02em; margin-top: 8px; }
