.page-news {
  background: var(--snow);
}

.page-news .news-hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.page-news .news-hero-inner {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
}

.page-news .news-hero-content {
  padding: 32px 0 48px;
  position: relative;
  z-index: 2;
}

.page-news .news-hero .breadcrumb {
  margin-bottom: 24px;
}

.page-news .news-hero .breadcrumb-item,
.page-news .news-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-hero .breadcrumb-item[aria-current] {
  color: var(--gold);
}

.page-news .news-hero .plate-label {
  color: var(--gold);
}

.page-news .news-hero h1 {
  margin: 12px 0 20px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 720px;
}

.page-news .news-hero-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.page-news .news-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-bottom: 32px;
}

.page-news .news-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-metric-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

.page-news .news-metric-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.page-news .news-hero-art {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.page-news .news-hero-geo {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.page-news .news-hero-geo-lg {
  width: 240px;
  height: 240px;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

.page-news .news-hero-geo-sm {
  width: 120px;
  height: 120px;
  right: 20px;
  bottom: -20px;
  border-color: rgba(192, 48, 40, 0.8);
}

.page-news .news-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-news .news-hero-stripe {
  position: absolute;
  width: 140%;
  height: 48px;
  background: linear-gradient(120deg, var(--red) 0%, transparent 70%);
  transform: rotate(-18deg);
  top: 72%;
  left: -20%;
}

.page-news .news-hero-vert {
  position: absolute;
  right: 24px;
  top: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.page-news .news-feed {
  padding-top: 56px;
  padding-bottom: 8px;
}

.page-news .news-feed-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}

.page-news .news-main {
  min-width: 0;
}

.page-news .section-head-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-news .news-filter {
  margin: 20px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-stream {
  column-count: 1;
  column-gap: 24px;
}

.page-news .news-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-2);
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

.page-news .news-card-featured .news-card-title {
  font-size: 24px;
}

.page-news .news-card-media {
  margin: 0 0 16px;
}

.page-news .news-card-media img,
.page-news .review-card-media img,
.page-news .news-notice-banner img,
.page-news .news-notice-icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-news .news-card-media img {
  object-fit: cover;
}

.page-news .news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.page-news .news-card-tag {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  text-transform: uppercase;
}

.page-news .news-card-tag.is-alt {
  background: var(--blue);
}

.page-news .news-card-round {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--ink);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.page-news .news-card-title {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.page-news .news-card-desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.78;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .news-card:hover .news-card-desc,
.page-news .news-card:focus-within .news-card-desc {
  -webkit-line-clamp: 8;
}

.page-news .news-card-details {
  border-top: 1px solid var(--fog);
  padding-top: 10px;
}

.page-news .news-card-details summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  padding: 4px 0;
}

.page-news .news-card-details summary::-webkit-details-marker {
  display: none;
}

.page-news .news-card-details summary:hover {
  color: var(--gold);
}

.page-news .news-card-extra {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.72;
  margin: 8px 0 0;
}

.page-news .news-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .news-tags-card,
.page-news .news-rhythm-card {
  padding: 20px;
}

.page-news .news-rail-title {
  font-size: 20px;
  margin: 8px 0 16px;
}

.page-news .news-rail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-news .news-rail-btn {
  width: 100%;
  justify-content: center;
}

.page-news .news-rhythm-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.page-news .news-rhythm-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--fog);
  font-size: 14px;
}

.page-news .news-rhythm-list b {
  font-family: var(--font-heading);
  color: var(--red);
  font-size: 18px;
}

.page-news .news-rhythm-note {
  font-size: 12px;
  opacity: 0.68;
  line-height: 1.6;
}

.page-news .divider {
  margin: 8px 0;
}

.page-news .news-reviews {
  padding-top: 16px;
}

.page-news .news-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.page-news .review-card {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}

.page-news .review-card-media {
  position: relative;
  border-bottom: 2px solid var(--ink);
}

.page-news .review-card-media img {
  width: 100%;
  object-fit: cover;
}

.page-news .review-score {
  position: absolute;
  right: 16px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
}

.page-news .review-score-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.page-news .review-score-label {
  font-size: 9px;
  letter-spacing: 0.06em;
  margin-top: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
}

.page-news .review-card-body {
  padding: 28px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-news .review-card-body-plain {
  padding-top: 18px;
}

.page-news .review-card-title {
  font-size: 20px;
  margin: 10px 0 8px;
  line-height: 1.3;
}

.page-news .review-card-body p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.78;
  margin-bottom: 16px;
}

.page-news .review-metrics {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  border-top: 1px solid var(--fog);
}

.page-news .review-metrics li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--fog);
}

.page-news .review-metrics b {
  font-family: var(--font-heading);
  color: var(--red);
  font-size: 16px;
}

.page-news .review-source {
  margin-top: auto;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.5;
}

.page-news .news-updates {
  padding-top: 16px;
}

.page-news .news-notice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-news .news-notice {
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-news .news-notice-calendar .news-notice-banner {
  position: relative;
  border-bottom: 3px solid var(--ink);
}

.page-news .news-notice-banner img {
  width: 100%;
  object-fit: cover;
}

.page-news .news-notice-version {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-1);
}

.page-news .news-notice-body {
  padding: 28px 24px;
}

.page-news .news-notice-body h3 {
  font-size: 24px;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.page-news .news-notice-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.page-news .news-notice-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--fog);
}

.page-news .news-notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.page-news .news-notice-icon {
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fog);
  padding: 20px;
}

.page-news .news-notice-icon img {
  max-width: 60%;
  object-fit: contain;
}

.page-news .news-notice-body .btn {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .page-news .news-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    min-height: 460px;
    padding: 0;
  }

  .page-news .news-hero-content {
    flex: 1 1 auto;
    padding: 72px 0;
  }

  .page-news .news-hero-art {
    flex: 0 0 320px;
    min-height: 400px;
  }

  .page-news .news-hero-geo-lg {
    width: 300px;
    height: 300px;
    left: auto;
    right: 0;
    top: 30px;
    transform: none;
  }

  .page-news .news-hero-geo-sm {
    right: 40px;
    bottom: -40px;
  }

  .page-news .news-hero-stripe {
    top: 62%;
  }

  .page-news .news-feed-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
  }

  .page-news .news-stream {
    column-count: 2;
  }

  .page-news .news-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-notice-grid {
    grid-template-columns: 7fr 5fr;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero-inner {
    min-height: 500px;
  }

  .page-news .news-feed-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}
