.page-news {
  --news-bg: #0A192F;
  --news-card-bg: #0F2240;
  --news-border: #C0C0C0;
  --news-primary: #FF4500;
  --news-primary-dark: #CC3700;
  --news-text: #FFFFFF;
  --news-text-muted: #B0BEC5;
  --news-accent-line: #C0C0C0;
  --news-tag-column: #FF4500;
  --news-tag-insight: #00E676;
  --news-tag-brand: #FF6A00;
  --news-tag-pick: #C0C0C0;
  --news-radius: 8px;
  --news-radius-lg: 12px;
  --news-font-heading: 'Montserrat','Impact',Arial Black,sans-serif;
  --news-font-body: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --news-font-data: 'Fira Code','Consolas',monospace;
  --news-max-width: 1200px;

  background-color: var(--news-bg);
  color: var(--news-text);
  font-family: var(--news-font-body);
  line-height: 1.6;
  padding: 0 16px 60px;
  min-height: 80vh;
}

.page-news__container {
  max-width: var(--news-max-width);
  margin: 0 auto;
}

/* Breadcrumb */
.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 12px;
  font-size: 14px;
  color: var(--news-text-muted);
  border-bottom: 1px solid rgba(192,192,192,0.15);
  margin-bottom: 32px;
}

.page-news .breadcrumb__item a {
  color: var(--news-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-news .breadcrumb__item a:hover,
.page-news .breadcrumb__item a:focus {
  color: var(--news-primary);
}

.page-news .breadcrumb__item--current {
  color: var(--news-text);
  font-weight: 600;
}

.page-news .breadcrumb__sep {
  color: var(--news-text-muted);
  font-weight: 300;
}

/* Heading */
.page-news__heading {
  font-family: var(--news-font-heading);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--news-text);
  margin: 0 0 6px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.page-news__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--news-primary);
  margin-top: 8px;
  border-radius: 2px;
}

.page-news__subtitle {
  font-size: 16px;
  color: var(--news-text-muted);
  margin: 8px 0 28px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Filters */
.page-news__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 4px;
}

.page-news__filter-btn {
  background: transparent;
  border: 1px solid rgba(192,192,192,0.25);
  color: var(--news-text-muted);
  font-family: var(--news-font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.page-news__filter-btn:hover,
.page-news__filter-btn:focus {
  border-color: var(--news-primary);
  color: var(--news-primary);
  background: rgba(255,69,0,0.08);
}

.page-news__filter-btn.is-active {
  background: var(--gradient-fire);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(255,69,0,0.3);
}

/* Featured Card */
.page-news__featured {
  margin-bottom: 50px;
}

.page-news__featured-card {
  display: flex;
  flex-direction: column;
  background: var(--news-card-bg);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  border-left: 4px solid var(--news-primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(255,69,0,0.15);
}

.page-news__featured-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #1A2A4A;
}

.page-news__featured-img .page-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news__featured-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news__tag {
  display: inline-block;
  font-family: var(--news-font-data);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.page-news__tag--column {
  background: rgba(255,69,0,0.15);
  color: var(--news-tag-column);
  border: 1px solid rgba(255,69,0,0.3);
}

.page-news__tag--insight {
  background: rgba(0,230,118,0.12);
  color: var(--news-tag-insight);
  border: 1px solid rgba(0,230,118,0.25);
}

.page-news__tag--brand {
  background: rgba(255,106,0,0.12);
  color: var(--news-tag-brand);
  border: 1px solid rgba(255,106,0,0.25);
}

.page-news__tag--pick {
  background: rgba(192,192,192,0.12);
  color: var(--news-tag-pick);
  border: 1px solid rgba(192,192,192,0.25);
}

.page-news__featured-title {
  font-family: var(--news-font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 2px 0 10px;
  color: var(--news-text);
}

.page-news__featured-summary {
  font-size: 15px;
  color: var(--news-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.page-news__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(192,192,192,0.12);
  padding-top: 14px;
  margin-top: auto;
}

.page-news__date {
  font-family: var(--news-font-data);
  font-size: 13px;
  color: var(--news-text-muted);
}

.page-news__read-more {
  font-family: var(--news-font-data);
  font-size: 13px;
  font-weight: 600;
  color: var(--news-primary);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.page-news__read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--news-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.page-news__read-more:hover,
.page-news__read-more:focus {
  color: var(--news-primary-dark);
}

.page-news__read-more:hover::after,
.page-news__read-more:focus::after {
  transform: scaleX(1);
}

/* Section Titles */
.page-news__section {
  margin-bottom: 50px;
}

.page-news__section-title {
  font-family: var(--news-font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--news-text);
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(192,192,192,0.12);
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-news__section-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--news-primary);
  border-radius: 3px;
  flex-shrink: 0;
}

/* Grid Layouts */
.page-news__grid {
  display: grid;
  gap: 24px;
}

.page-news__grid--2 {
  grid-template-columns: 1fr;
}

.page-news__grid--3 {
  grid-template-columns: 1fr;
}

/* Card (grid item) */
.page-news__card {
  background: var(--news-card-bg);
  border-radius: var(--news-radius);
  overflow: hidden;
  border: 1px solid rgba(192,192,192,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,69,0,0.25);
  box-shadow: 0 6px 28px rgba(255,69,0,0.08);
}

.page-news__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1A2A4A;
  position: relative;
}

.page-news__card-img .page-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.page-news__card:hover .page-news__img {
  transform: scale(1.04);
}

.page-news__card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-news__card-title {
  font-family: var(--news-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 6px 0 8px;
  color: var(--news-text);
}

.page-news__card-summary {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

/* Row card (for insight section) */
.page-news__card--row {
  flex-direction: column;
}

.page-news__card-img--sm {
  aspect-ratio: 4 / 3;
}

/* List (for brand section) */
.page-news__list {
  display: grid;
  gap: 20px;
}

.page-news__list-item {
  display: flex;
  flex-direction: column;
  background: var(--news-card-bg);
  border-radius: var(--news-radius);
  overflow: hidden;
  border: 1px solid rgba(192,192,192,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-news__list-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,69,0,0.2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.page-news__list-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1A2A4A;
}

.page-news__list-img .page-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.page-news__list-item:hover .page-news__img {
  transform: scale(1.04);
}

.page-news__list-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-news__list-title {
  font-family: var(--news-font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 4px 0 8px;
  color: var(--news-text);
}

.page-news__list-summary {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}

/* Pick cards slightly different accent */
.page-news__card--pick {
  border-top: 3px solid transparent;
  border-image: var(--gradient-fire);
  border-image-slice: 1;
  border-image-source: var(--gradient-fire);
  border-top-width: 3px;
  border-top-style: solid;
  border-image-repeat: stretch;
  border-image-width: 0 0 0 3px;
  border-left: 3px solid transparent;
  border-image: var(--gradient-fire);
  border-image-slice: 1;
}

/* Section picks background hint */
.page-news__section--picks {
  position: relative;
}

.page-news__section--picks::before {
  content: '';
  position: absolute;
  top: -12px;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(255,69,0,0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Desktop ≥768px */
@media (min-width: 768px) {
  .page-news {
    padding: 0 32px 80px;
  }

  .page-news__heading {
    font-size: 52px;
  }

  .page-news__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .page-news__filters {
    gap: 12px;
  }

  .page-news__filter-btn {
    font-size: 15px;
    padding: 10px 24px;
  }

  .page-news__featured-card {
    flex-direction: row;
  }

  .page-news__featured-img {
    width: 45%;
    aspect-ratio: auto;
    min-height: 320px;
    flex-shrink: 0;
  }

  .page-news__featured-body {
    padding: 32px 36px;
  }

  .page-news__featured-title {
    font-size: 30px;
  }

  .page-news__featured-summary {
    font-size: 16px;
  }

  .page-news__grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .page-news__grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-news__card--row {
    flex-direction: column;
  }

  .page-news__list-item {
    flex-direction: row;
  }

  .page-news__list-img {
    width: 220px;
    min-height: 160px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .page-news__list-body {
    padding: 22px 28px;
  }

  .page-news__list-title {
    font-size: 18px;
  }

  .page-news__section-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

/* Desktop ≥1024px */
@media (min-width: 1024px) {
  .page-news {
    padding: 0 48px 100px;
  }

  .page-news__featured-img {
    width: 50%;
    min-height: 360px;
  }

  .page-news__featured-body {
    padding: 40px 44px;
  }

  .page-news__featured-title {
    font-size: 34px;
  }

  .page-news__list-img {
    width: 260px;
    min-height: 170px;
  }

  .page-news__card-title {
    font-size: 18px;
  }

  .page-news__section-title {
    font-size: 30px;
  }
}

/* Large desktop 1200px+ */
@media (min-width: 1200px) {
  .page-news__featured-img {
    width: 48%;
    min-height: 400px;
  }
}
</PAGE_CSS>
