/* News page */

.news-how {
  padding-top: 64px;
}

.news-how__inner {
  max-width: var(--content);
}

.news-how__inner p {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ink);
  margin: 0;
}

.news-how__access {
  font: inherit;
  font-family: var(--head);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92em;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.news-how__access:hover {
  color: #fff;
}

.news-feed {
  padding-top: 24px;
}

.news-feed__heading {
  font-family: var(--head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: bold;
  color: var(--black);
  margin: 0 0 28px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--content);
  border-top: 1px solid var(--grey-rule);
}

.story-grid > .widget-status {
  margin: 0;
  padding: 48px 0;
  text-align: center;
  font-family: var(--body);
  font-size: 15px;
  color: var(--grey-static);
}

.story-grid > .widget-status--error {
  color: #a33;
}

.story-card {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-bottom: 1px solid var(--grey-rule);
}

.story-card__label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.story-card__title {
  font-family: var(--head);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: bold;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 18px;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

.story-card__content {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--grey-static);
  margin: 0;
  max-width: 100%;
  text-align: justify;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

.story-card__content > *:first-child {
  margin-top: 0;
}

.story-card__content > *:last-child {
  margin-bottom: 0;
}

.story-card__content p {
  margin: 0 0 1em;
}

.story-card__content p:last-child {
  margin-bottom: 0;
}

.story-card__content h2,
.story-card__content h3,
.story-card__content h4 {
  font-family: var(--head);
  font-weight: bold;
  color: var(--black);
  line-height: 1.3;
  margin: 1.25em 0 0.5em;
}

.story-card__content h2 {
  font-size: 1.25em;
}

.story-card__content h3,
.story-card__content h4 {
  font-size: 1.1em;
}

.story-card__content ul,
.story-card__content ol {
  margin: 0 0 1em;
  padding-left: 1.35em;
}

.story-card__content li {
  margin-bottom: 0.35em;
}

.story-card__content a {
  color: var(--orange-deep);
}

.story-card__content a:hover {
  color: var(--black);
}

.story-card__content strong,
.story-card__content b {
  color: var(--ink);
  font-weight: bold;
}

.story-card__content em,
.story-card__content i {
  font-style: italic;
}

.story-card__content blockquote {
  margin: 0 0 1em;
  padding: 0.2em 0 0.2em 1em;
  border-left: 3px solid var(--orange);
  color: var(--ink);
}

.story-card__more {
  margin-top: 22px;
  font-family: var(--head);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--orange-deep);
  text-decoration: none;
}

.story-card__more:hover {
  color: var(--black);
}

.story-access {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--grey-rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.story-access__lead {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--grey-static);
  margin: 0;
  flex: 1 1 16rem;
}

.story-access__cta {
  font-family: var(--head);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.story-access__cta:hover {
  background: var(--orange-deep);
}

@media (max-width: 1024px) {
  .story-card {
    padding: 28px 0;
  }

  .story-card__title {
    font-size: clamp(22px, 5vw, 28px);
  }

  .news-how,
  .news-feed {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-access {
    flex-direction: column;
    align-items: stretch;
  }

  .story-access__cta {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
