/* ── Single News Article ── */

/* ── Hero (taller for article title) ── */
.page-hero--news-single {
  height: clamp(360px, 40vw, 500px);
  align-items: flex-end;
}

.page-hero--news-single .page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2.5rem;
  max-width: 1000px;
}

/* Back link */
.news-single-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.19rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  transition: opacity 0.2s;
}

.news-single-back:hover {
  opacity: 0.7;
}

.news-single-back svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Hero title override */
.page-hero--news-single .page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ── Meta (date / author) ── */
.news-single-meta {
  text-align: center;
  padding: 1.5rem 4.2% 0;
  font-size: 1.19rem;
  font-weight: 400;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Standfirst ── */
.news-single-standfirst {
  max-width: 1000px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 4.2%;
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #323232;
  line-height: 1.46;
  text-transform: capitalize;
}

/* ── Featured Image ── */
.news-single-image {
  max-width: 1270px;
  margin: 0 auto 3rem;
  padding: 0 4.2%;
}

.news-single-image img {
  width: 100%;
  display: block;
  border-radius: 5px;
  aspect-ratio: 1270 / 845;
  object-fit: cover;
}

/* ── Article Body ── */
.news-single-body {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  padding: 0 4.2%;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  font-weight: 400;
  line-height: 2;
  color: #212121;
  letter-spacing: -0.01em;
}

.news-single-body p {
  margin-bottom: 0.875rem;
}

.news-single-body p:last-child {
  margin-bottom: 0;
}

.news-single-body a {
  color: #212121;
  text-decoration: underline;
  transition: color 0.2s;
}

.news-single-body a:hover {
  color: #025e90;
}

/* ── Prev / Next Navigation ── */
.news-single-nav {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  padding: 0 4.2%;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.news-single-nav__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  max-width: 45%;
  transition: opacity 0.2s;
}

.news-single-nav__link:hover {
  opacity: 0.7;
}

.news-single-nav__link--next {
  margin-left: auto;
  text-align: right;
}

.news-single-nav__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-single-nav__link--prev svg {
  fill: #155573;
}

.news-single-nav__link--next svg {
  fill: #e26b0a;
}

.news-single-nav__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.news-single-nav__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-single-nav__link--prev .news-single-nav__label {
  color: #155573;
}

.news-single-nav__link--next .news-single-nav__label {
  color: #e26b0a;
}

.news-single-nav__title {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-hero--news-single {
    height: clamp(300px, 55vw, 420px);
  }

  .page-hero--news-single .page-hero__content {
    padding-bottom: 2rem;
    max-width: 100%;
  }

  .news-single-standfirst {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }

  .news-single-image {
    margin-bottom: 2rem;
  }

  .news-single-nav {
    flex-direction: column;
    gap: 1.25rem;
  }

  .news-single-nav__link {
    max-width: 100%;
  }

  .news-single-nav__link--next {
    text-align: left;
  }
}
