.page-news {
  background: var(--color-light);
  color: var(--color-dark);
}

.page-news .news-hero {
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 24px 0 48px;
  margin-bottom: 32px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green) 0%, var(--color-orange) 65%, transparent 100%);
  z-index: 1;
}

.page-news .news-hero::after {
  content: "INSIGHTS";
  position: absolute;
  right: -16px;
  bottom: -8px;
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}

.page-news .news-hero .container,
.page-news .news-layout {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.page-news .news-hero .breadcrumb {
  margin: 0 0 32px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.page-news .news-hero .breadcrumb a {
  color: var(--color-green);
  text-decoration: none;
  transition: opacity 160ms ease-out;
}

.page-news .news-hero .breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.page-news .news-hero__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-green);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.12;
  color: var(--color-white);
  margin: 0 0 16px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero h1 span {
  color: var(--color-green);
}

.page-news .news-hero .lead-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero__meta span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-green);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 6px 12px;
  letter-spacing: 0.05em;
}

.page-news .news-layout {
  display: block;
  padding-bottom: 64px;
}

.page-news .news-layout__side {
  margin-top: 32px;
}

.page-news .news-feed {
  margin-bottom: 32px;
}

.page-news .news-feed .section-label,
.page-news .news-topic .section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-orange);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.page-news .news-feed h2,
.page-news .news-topic h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-dark);
  margin: 0 0 24px;
}

.page-news .news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top-width: 3px;
  border-top-color: transparent;
  margin-bottom: 24px;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
}

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

.page-news .news-card--featured {
  border-top-color: var(--color-green);
}

.page-news .news-card__image {
  overflow: hidden;
}

.page-news .news-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-news .news-card__body {
  padding: 20px 20px 24px;
}

.page-news .news-card__tags {
  margin-bottom: 10px;
}

.page-news .news-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 0 10px;
}

.page-news .news-card__summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-gray);
  margin: 0 0 14px;
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-gray);
}

.page-news .news-card__link {
  margin-left: auto;
  color: var(--color-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease-out;
}

.page-news .news-card__link:hover {
  border-bottom-color: var(--color-green);
}

.page-news .news-topic {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px 20px;
  margin-bottom: 24px;
}

.page-news .news-topic h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.page-news .news-topic__list {
  margin-top: 12px;
}

.page-news .news-topic__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-dark);
  transition: padding-left 160ms ease-out, background-color 160ms ease-out;
}

.page-news .news-topic__item:last-child {
  border-bottom: none;
}

.page-news .news-topic__item:hover {
  padding-left: 8px;
  background-color: rgba(0, 255, 136, 0.06);
}

.page-news .news-topic__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-green);
}

.page-news .news-topic__name {
  font-size: 14px;
  font-weight: 600;
}

.page-news .news-topic__count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-gray);
}

.page-news .news-quick {
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 24px 20px;
  margin-bottom: 24px;
  overflow: hidden;
}

.page-news .news-quick::after {
  content: "QUICK";
  position: absolute;
  right: 8px;
  bottom: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-news .news-quick h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.page-news .news-quick p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.page-news .news-quick .btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out;
}

.page-news .news-quick .btn:last-child {
  margin-bottom: 0;
}

.page-news .news-quick .btn--primary {
  background: var(--color-green);
  color: var(--color-primary);
  border: 1px solid var(--color-green);
}

.page-news .news-quick .btn--primary:hover {
  background: rgba(0, 255, 136, 0.15);
  color: var(--color-green);
}

.page-news .news-quick .btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-news .news-quick .btn--ghost:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.page-news .news-subscribe {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 24px 20px;
  border-left: 4px solid var(--color-orange);
}

.page-news .news-subscribe h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin: 0 0 8px;
}

.page-news .news-subscribe p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 40px 0 64px;
    margin-bottom: 48px;
  }

  .page-news .news-hero h1 {
    font-size: 48px;
    max-width: 620px;
  }

  .page-news .news-hero .lead-text {
    font-size: 17px;
    max-width: 520px;
  }

  .page-news .news-hero::after {
    font-size: 180px;
    right: -10px;
    bottom: -12px;
  }

  .page-news .news-hero .container,
  .page-news .news-layout {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-news .news-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 80px;
  }

  .page-news .news-layout__main {
    flex: 0 0 64%;
    max-width: 64%;
  }

  .page-news .news-layout__side {
    flex: 1 1 36%;
    max-width: 36%;
    margin-top: 0;
    position: sticky;
    top: 24px;
  }

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

  .page-news .news-card__summary {
    font-size: 15px;
  }
}
