/* =============================================
   PADBROOK — News section
   Extends design2's style.css; uses its variables only.
   ============================================= */

.news-section { padding: var(--section-pad) 0; }
.news-section--related { background: var(--ivory-dark); }

.news-empty {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

/* --- CARD GRID --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.news-card { background: transparent; }

.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.news-card__link:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(27,46,42,0.09);
}

.news-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ivory-dark);
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.news-card__link:hover .news-card__media img { transform: scale(1.05); }

.news-card__media--blank {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
}
.news-card__mark {
  font-family: var(--font-serif);
  font-size: 54px;
  font-style: italic;
  color: rgba(196,152,58,0.35);
}

.news-card__pin {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.news-card__body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card__dot { color: var(--border); }

.news-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.32;
  color: var(--forest);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.news-card__link:hover .news-card__title { color: var(--forest-light); }

.news-card__excerpt {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

.news-card__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color var(--transition);
}
.news-card__link:hover .news-card__cta { color: var(--gold); }

/* --- PAGER --- */
.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 72px;
}
.news-pager__btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--forest);
  color: var(--forest);
  transition: var(--transition);
}
a.news-pager__btn:hover { background: var(--forest); color: var(--ivory); }
.news-pager__btn.is-off { opacity: 0.25; border-color: var(--border); }
.news-pager__count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* --- SINGLE ARTICLE --- */
.news-preview-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-preview-bar a { text-decoration: underline; margin-left: 12px; }

.news-article__hero {
  background: var(--forest);
  padding: calc(var(--nav-height) + 80px) 0 90px;
}
.news-article__back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  margin-bottom: 40px;
  transition: color var(--transition);
}
.news-article__back:hover { color: var(--gold-light); }

.news-article__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-article__meta .news-card__dot { color: rgba(247,243,238,0.3); }

.news-article__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ivory);
  max-width: 880px;
}

.news-article__standfirst {
  margin-top: 26px;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(247,243,238,0.62);
  font-weight: 300;
}

.news-article__figure {
  max-width: 1000px;
  margin: -60px auto 0;
  padding: 0 56px;
}
.news-article__figure img { width: 100%; height: auto; }
.news-article__figure figcaption {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  padding-top: 14px;
  text-align: center;
}

/* Article prose. Generous measure, serif headings, matching the site. */
.news-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 56px 0;
  font-size: 17px;
  line-height: 1.9;
  color: #4A4A46;
}
.news-article__body > *:first-child { margin-top: 0; }
.news-article__body p { margin-bottom: 26px; }
.news-article__body h2,
.news-article__body h3,
.news-article__body h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.28;
  margin: 48px 0 18px;
}
.news-article__body h2 { font-size: 30px; }
.news-article__body h3 { font-size: 24px; }
.news-article__body h4 { font-size: 20px; }
.news-article__body a {
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  transition: color var(--transition);
}
.news-article__body a:hover { color: var(--gold); }
.news-article__body strong { font-weight: 500; color: var(--forest); }
.news-article__body ul,
.news-article__body ol { margin: 0 0 26px 22px; }
.news-article__body ul { list-style: disc; }
.news-article__body ol { list-style: decimal; }
.news-article__body li { margin-bottom: 10px; padding-left: 6px; }
.news-article__body li::marker { color: var(--gold); }
.news-article__body blockquote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 28px;
  margin: 36px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--forest);
}
.news-article__body img { margin: 36px 0; width: 100%; height: auto; }
.news-article__body figure { margin: 36px 0; }
.news-article__body figure img { margin: 0; }
.news-article__body figcaption {
  font-size: 12px;
  color: var(--warm-gray);
  padding-top: 12px;
  text-align: center;
}
.news-article__body hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.news-article__foot {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 56px 100px;
}
.news-article__foot .divider { margin-bottom: 32px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-card__body { padding: 24px 22px 26px; }
  .news-article__hero { padding: calc(var(--nav-height) + 48px) 0 60px; }
  .news-article__figure { margin-top: -34px; padding: 0 22px; }
  .news-article__body { padding: 48px 22px 0; font-size: 16px; }
  .news-article__body h2 { font-size: 26px; }
  .news-article__body h3 { font-size: 21px; }
  .news-article__foot { padding: 44px 22px 72px; }
  .news-pager { gap: 14px; flex-wrap: wrap; }
  .news-pager__btn { padding: 11px 18px; }
}
