.page-news {
  --news-orange: #FF5400;
  --news-lava: #C61C00;
  --news-night: #0B1020;
  --news-navy: #131A30;
  --news-gold: #D4AF37;
  --news-cyber: #1D9BF0;
  --news-pearl: #F5F7FA;
  --news-dark: #1C2130;
  --news-smoke: #5A6068;
  --news-success: #21C55E;
  --btn-radius: 0;
  color: var(--news-dark);
  background: var(--news-pearl);
  overflow-x: hidden;
}

.page-news .site-container {
  max-width: var(--container, 1280px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-news .news-topbar {
  background: var(--news-night);
  border-bottom: 1px solid rgba(212, 175, 55, .35);
}

.page-news .news-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--news-smoke);
}

.page-news .crumb-link {
  color: var(--news-pearl);
  text-decoration: none;
  transition: color .2s ease;
}

.page-news .crumb-link:hover {
  color: var(--news-orange);
}

.page-news .crumb-sep {
  color: var(--news-gold);
}

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

.page-news .news-topbar__note {
  font-size: 13px;
  color: rgba(245, 247, 250, .55);
}

.page-news .news-hero {
  background: var(--news-night);
  color: var(--news-pearl);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 84, 0, .12) 28px 32px);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "FH / NEWS";
  position: absolute;
  right: 24px;
  bottom: 8px;
  font-family: var(--font-mono, monospace);
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 800;
  letter-spacing: .05em;
  color: rgba(245, 247, 250, .06);
  line-height: 1;
  pointer-events: none;
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.page-news .news-hero__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.page-news .news-hero__lead {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .82);
}

.page-news .news-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--news-pearl);
}

.page-news .news-hero__meta .mono {
  font-size: 28px;
  font-weight: 700;
  color: var(--news-gold);
}

.page-news .news-hero__visual {
  position: relative;
}

.page-news .news-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-news .news-hero__sticker {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--news-orange);
  padding: 12px 16px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-news .news-hero__sticker-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--news-night);
  line-height: 1;
}

.page-news .news-hero__sticker-label {
  color: var(--news-night);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
}

.page-news .section-block {
  padding: 64px 0;
}

.page-news .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-left: 4px solid var(--news-orange);
  padding-left: 16px;
}

.page-news .section-title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.page-news .section-more {
  color: var(--news-cyber);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.page-news .section-more:hover {
  border-color: var(--news-cyber);
}

.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.page-news .filter-btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(11, 16, 32, .22);
  color: var(--news-dark);
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 16px;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-news .filter-btn:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

.page-news .filter-btn.is-active,
.page-news .filter-btn[aria-pressed="true"] {
  background: var(--news-orange);
  border-color: var(--news-orange);
  color: var(--news-pearl);
}

.page-news .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--news-pearl);
  border: 1px solid rgba(11, 16, 32, .12);
  box-shadow: 0 2px 12px rgba(11, 16, 32, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11, 16, 32, .14);
}

.page-news .news-card__media {
  position: relative;
}

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

.page-news .news-card__img img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 0 100%);
}

.page-news .news-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.page-news .news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--news-smoke);
}

.page-news .news-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.page-news .news-card__summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--news-smoke);
}

.page-news .news-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  flex-wrap: wrap;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-news .btn-primary {
  background: var(--news-orange);
  border-color: var(--news-orange);
  color: var(--news-pearl);
}

.page-news .btn-primary:hover {
  background: var(--news-lava);
  border-color: var(--news-lava);
}

.page-news .btn-outline {
  background: transparent;
  border-color: rgba(11, 16, 32, .4);
  color: var(--news-dark);
}

.page-news .btn-outline:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

.page-news .btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.page-news .news-list__footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.page-news .news-list__more {
  min-width: 180px;
}

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

.page-news .news-featured .section-title {
  color: var(--news-pearl);
}

.page-news .news-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .featured-card {
  position: relative;
  background: var(--news-navy);
  border: 1px solid rgba(212, 175, 55, .28);
  overflow: hidden;
}

.page-news .featured-card > .featured-card__img {
  display: block;
}

.page-news .featured-card__img img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 0 100%);
}

.page-news .featured-card--big .featured-card__img {
  position: relative;
}

.page-news .featured-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0) 0%, rgba(11, 16, 32, .72) 60%, rgba(11, 16, 32, .92) 100%);
}

.page-news .featured-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--news-pearl);
  line-height: 1.2;
}

.page-news .featured-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 247, 250, .85);
}

.page-news .featured-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-news .featured-card__body .featured-card__title {
  color: var(--news-pearl);
}

.page-news .featured-card__body .featured-card__desc {
  color: rgba(245, 247, 250, .72);
}

.page-news .featured-card__body .btn-outline {
  border-color: rgba(245, 247, 250, .5);
  color: var(--news-pearl);
}

.page-news .featured-card__body .btn-outline:hover {
  border-color: var(--news-gold);
  color: var(--news-gold);
}

.page-news .news-categories {
  background: var(--news-pearl);
  padding: 64px 0;
}

.page-news .news-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-cat-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--news-night);
  color: var(--news-pearl);
  border-left: 4px solid var(--news-orange);
}

.page-news .news-cat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-news .news-cat-panel__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 247, 250, .78);
}

.page-news .news-cat-panel .acc-trigger {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(245, 247, 250, .3);
  color: var(--news-pearl);
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: border-color .2s ease, color .2s ease;
}

.page-news .news-cat-panel .acc-trigger:hover {
  border-color: var(--news-gold);
  color: var(--news-gold);
}

.page-news .news-cat-panel .acc-content {
  display: none;
}

.page-news .news-cat-panel[data-open="true"] .acc-content {
  display: block;
}

.page-news .news-cat-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, .3);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-news .news-cat-panel__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 247, 250, .85);
}

.page-news .news-cat-panel__list .mono {
  color: var(--news-gold);
  font-weight: 600;
  min-width: 28px;
}

.page-news .news-categories__bottom {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: var(--news-pearl);
  border: 1px solid rgba(11, 16, 32, .12);
  padding: 20px;
}

.page-news .news-categories__phone {
  max-width: 320px;
  margin: 0 auto;
}

.page-news .news-categories__phone img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.page-news .news-categories__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--news-smoke);
}

.page-news .news-subscribe {
  background: var(--news-night);
  padding: 64px 0;
}

.page-news .news-subscribe__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: var(--news-pearl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--news-gold);
}

.page-news .news-subscribe__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 84, 0, .18) 12px 14px);
  pointer-events: none;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-news .news-subscribe__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-right: 20px;
}

.page-news .news-subscribe__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--news-smoke);
  max-width: 720px;
}

.page-news .news-subscribe__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .text-mute {
  color: var(--news-smoke);
}

.page-news .text-orange {
  color: var(--news-orange);
}

.page-news .text-sm {
  font-size: 14px;
}

.page-news .mono {
  font-family: var(--font-mono, monospace);
}

.page-news .flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-news .flag--orange {
  background: var(--news-orange);
  color: var(--news-pearl);
}

.page-news .flag--gold {
  background: var(--news-gold);
  color: var(--news-night);
}

.page-news .flag--ghost {
  background: transparent;
  border: 1px solid rgba(11, 16, 32, .25);
  color: var(--news-dark);
}

.page-news .signal-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.page-news .signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

.page-news .signal-dot--live {
  background: var(--news-success);
  box-shadow: 0 0 0 4px rgba(33, 197, 94, .2);
}

.page-news .signal-dot--ok {
  background: var(--news-cyber);
  box-shadow: 0 0 0 4px rgba(29, 155, 240, .18);
}

.page-news .signal-dot--gold {
  background: var(--news-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .16);
}

.page-news .img-frame {
  overflow: hidden;
}

.page-news .img-frame--portrait {
  aspect-ratio: 400 / 800;
}

.page-news .img-frame img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 720px) {
  .page-news .news-hero {
    padding: 80px 0;
  }

  .page-news .news-card {
    grid-template-columns: 320px 1fr;
  }

  .page-news .news-card__media {
    border-right: none;
  }

  .page-news .news-card__img {
    height: 100%;
  }

  .page-news .news-card__img img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-featured__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .featured-card--big {
    grid-column: span 2;
  }

  .page-news .news-categories__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .news-categories__bottom {
    grid-template-columns: 320px 1fr;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 64px;
  }

  .page-news .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .news-card {
    grid-template-columns: 140px 1fr;
  }

  .page-news .news-card__media {
    min-height: 180px;
  }

  .page-news .news-card__img img {
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  }

  .page-news .news-featured__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .page-news .featured-card--big {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }

  .page-news .featured-card--big .featured-card__img {
    flex: 1;
  }

  .page-news .featured-card--big .featured-card__img img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-news .news-subscribe__panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 36px;
  }

  .page-news .news-subscribe__actions {
    flex: none;
  }
}
