.page-news{
  --news-gold-line: rgba(212,168,67,.32);
  --news-card-bg: rgba(18,27,22,.84);
  --news-text-secondary: rgba(245,240,230,.66);
  --news-radius-lg: 20px;
  --news-radius-md: 14px;
  background-color: var(--void);
  color: var(--porcelain);
  position: relative;
}

.page-news .news-hero{
  position: relative;
  overflow: hidden;
  padding: 96px 0 40px;
  background:
    radial-gradient(ellipse at 84% 8%, rgba(212,168,67,.14) 0%, transparent 46%),
    linear-gradient(128deg, var(--club-green) 0%, #101b13 62%, var(--void) 100%);
}
.page-news .news-hero::before{
  content: "";
  position: absolute;
  top: -90px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(245,240,230,.07) 12px 14px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  pointer-events: none;
}
.page-news .news-hero::after{
  content: "";
  position: absolute;
  left: -130px;
  bottom: -70px;
  width: 320px;
  height: 100px;
  background: rgba(212,168,67,.08);
  transform: rotate(-7deg);
  pointer-events: none;
}
.page-news .news-hero__inner{
  position: relative;
  z-index: 1;
}
.page-news .news-hero__grid{
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.page-news .news-hero__main{
  max-width: 820px;
}
.page-news .news-hero__kicker{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-news .news-hero__kicker::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.page-news .news-hero__title{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: .02em;
  color: var(--porcelain);
  margin: 0 0 14px;
}
.page-news .news-hero__title em{
  font-style: normal;
  color: var(--gold);
}
.page-news .news-hero__lead{
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,240,230,.76);
  margin: 0;
}
.page-news .news-hero__stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}
.page-news .news-hero__stat{
  background: rgba(11,15,13,.68);
  border: 1px solid var(--news-gold-line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.page-news .news-hero__stat-label{
  font-size: 11px;
  color: rgba(245,240,230,.55);
  margin: 0 0 4px;
}
.page-news .news-hero__stat-value{
  font-family: var(--font-number);
  font-size: 23px;
  line-height: 1;
  color: var(--gold);
  margin: 0;
}

.page-news .news-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 44px 0 0;
}
.page-news .news-sidebar__title{
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--porcelain);
  margin: 0 0 14px;
}
.page-news .news-filter{
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.page-news .news-filter .g-filter__btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,240,230,.18);
  background: rgba(18,27,22,.7);
  color: var(--porcelain);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.page-news .news-filter .g-filter__btn:hover{
  border-color: var(--gold);
  transform: translateY(-1px);
}
.page-news .news-filter .g-filter__btn.is-active{
  border-color: var(--flare-green);
  color: var(--flare-green);
  background: rgba(57,255,20,.08);
  box-shadow: 0 0 16px rgba(57,255,20,.14);
}
.page-news .news-filter__count{
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--stone);
  transition: color .25s;
}
.page-news .news-filter .g-filter__btn.is-active .news-filter__count{
  color: var(--flare-green);
}
.page-news .news-sidebar__note{
  display: none;
  margin-top: 20px;
  padding: 16px;
  border: 1px dashed rgba(212,168,67,.32);
  border-radius: var(--radius-md);
  background: rgba(212,168,67,.05);
}
.page-news .news-sidebar__note-title{
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  margin: 0 0 6px;
}
.page-news .news-sidebar__note p{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,240,230,.62);
  margin: 0;
}

.page-news .news-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.page-news .news-card{
  display: flex;
  flex-direction: column;
  background: var(--news-card-bg);
  border: 1px solid rgba(245,240,230,.1);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.page-news .news-card:hover{
  transform: translateY(-3px);
  border-color: rgba(212,168,67,.4);
  box-shadow: var(--shadow-card);
}
.page-news .news-card.is-hidden{
  display: none;
}
.page-news .news-card--featured{
  border-color: var(--news-gold-line);
  background:
    linear-gradient(135deg, rgba(212,168,67,.09), transparent 40%),
    var(--news-card-bg);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.page-news .news-card__media{
  aspect-ratio: 4 / 3;
  background: var(--panel);
  overflow: hidden;
}
.page-news .news-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .news-card__body{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
  min-width: 0;
}
.page-news .news-card__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-news .news-card__cat{
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.page-news .news-card__cat--preview{
  background: rgba(60,107,63,.22);
  border: 1px solid rgba(60,107,63,.55);
  color: #A9D6AA;
}
.page-news .news-card__cat--report{
  background: rgba(139,37,0,.22);
  border: 1px solid rgba(139,37,0,.55);
  color: #ECA58E;
}
.page-news .news-card__cat--update{
  background: rgba(212,168,67,.16);
  border: 1px solid rgba(212,168,67,.5);
  color: var(--gold-light);
}
.page-news .news-card__cat--feature{
  background: rgba(90,107,90,.22);
  border: 1px solid rgba(90,107,90,.55);
  color: #B9C7B9;
}
.page-news .news-card__round{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gold);
}
.page-news .news-card__pin{
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--flare-green);
  border: 1px solid rgba(57,255,20,.4);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.page-news .news-card__title{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--porcelain);
  margin: 0;
}
.page-news .news-card--featured .news-card__title{
  font-size: 24px;
  line-height: 1.26;
}
.page-news .news-card__summary{
  font-size: 14px;
  line-height: 1.75;
  color: var(--news-text-secondary);
  margin: 0;
}
.page-news .news-card__detail{
  border-top: 1px solid rgba(245,240,230,.08);
  padding-top: 10px;
  font-size: 13px;
}
.page-news .news-card__detail summary{
  cursor: pointer;
  color: var(--gold-light);
  font-size: 13px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.page-news .news-card__detail summary::-webkit-details-marker{
  display: none;
}
.page-news .news-card__detail summary::before{
  content: "+";
  font-family: var(--font-number);
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}
.page-news .news-card__detail[open] summary::before{
  content: "–";
}
.page-news .news-card__detail p{
  margin: 8px 0 0;
  line-height: 1.7;
  color: rgba(245,240,230,.7);
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.page-news .news-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}
.page-news .news-card__readtime{
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--stone);
}
.page-news .news-card__updated{
  font-size: 12px;
  color: rgba(245,240,230,.5);
}

.page-news .news-rhythm{
  margin-top: 56px;
  padding: 52px 0 36px;
  background:
    linear-gradient(180deg, transparent, rgba(30,77,43,.2) 30%, rgba(30,77,43,.26) 70%, transparent),
    var(--void);
  position: relative;
  overflow: hidden;
}
.page-news .news-rhythm__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-news .news-rhythm__lead{
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-text-secondary);
  margin: 6px 0 28px;
  max-width: 620px;
}
.page-news .news-rhythm__timeline{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-news .news-rhythm__timeline::before{
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(212,168,67,.12));
}
.page-news .rhythm-item{
  position: relative;
  padding-left: 32px;
  padding-bottom: 24px;
}
.page-news .rhythm-item:last-child{
  padding-bottom: 0;
}
.page-news .rhythm-item__dot{
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--gold);
}
.page-news .rhythm-item__dot::after{
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold-light);
}
.page-news .rhythm-item__content h3{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  color: var(--porcelain);
  margin: 0 0 6px;
}
.page-news .rhythm-item__content p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,230,.66);
  margin: 0;
}
.page-news .news-rhythm__more{
  margin-top: 28px;
  font-size: 14px;
  color: rgba(245,240,230,.7);
}
.page-news .news-rhythm__visual{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--news-radius-lg);
  border: 1px solid rgba(212,168,67,.2);
  background: var(--panel);
  align-self: center;
}
.page-news .news-rhythm__visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 200px;
}
.page-news .news-rhythm__visual figcaption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px;
  font-size: 12px;
  color: rgba(245,240,230,.72);
  background: linear-gradient(transparent, rgba(11,15,13,.85));
  letter-spacing: .06em;
}

.page-news .news-subscribe{
  padding: 48px 0 64px;
}
.page-news .news-subscribe__inner{
  background:
    linear-gradient(128deg, rgba(30,77,43,.6), rgba(18,27,22,.94) 68%);
  border: 1px solid var(--news-gold-line);
  border-radius: var(--news-radius-lg);
  padding: 30px 24px 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.page-news .news-subscribe__inner::before{
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: repeating-linear-gradient(60deg, transparent 0 12px, rgba(212,168,67,.1) 12px 14px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  pointer-events: none;
}
.page-news .news-subscribe__title{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .03em;
  color: var(--porcelain);
  margin: 0 0 12px;
}
.page-news .news-subscribe__desc{
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-text-secondary);
  margin: 0 0 12px;
  max-width: 640px;
}
.page-news .news-subscribe__contact{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,230,.72);
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.page-news .news-subscribe__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .news-subscribe__badge{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border: 1px dashed rgba(212,168,67,.4);
  border-radius: var(--news-radius-md);
  background: rgba(11,15,13,.5);
  text-align: center;
}
.page-news .news-subscribe__badge-icon{
  font-family: var(--font-number);
  font-size: 34px;
  letter-spacing: .12em;
  color: var(--flare-green);
  border: 2px solid var(--flare-green);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(57,255,20,.18);
}
.page-news .news-subscribe__badge-label{
  font-size: 13px;
  color: rgba(245,240,230,.68);
  line-height: 1.6;
}

@media (min-width: 768px){
  .page-news .news-hero{
    padding: 120px 0 48px;
  }
  .page-news .news-hero__grid{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .page-news .news-hero__title{
    font-size: 40px;
  }
  .page-news .news-hero__lead{
    font-size: 16px;
  }
  .page-news .news-hero__stats{
    min-width: 320px;
    gap: 12px;
  }
  .page-news .news-hero__stat{
    padding: 16px 18px;
  }
  .page-news .news-hero__stat-value{
    font-size: 28px;
  }
  .page-news .news-sidebar__note{
    display: block;
  }
  .page-news .news-card--featured{
    flex-direction: row;
  }
  .page-news .news-card--featured .news-card__media{
    width: 36%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }
  .page-news .news-card__body{
    padding: 20px;
  }
  .page-news .news-rhythm__grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .page-news .news-rhythm__visual img{
    min-height: 280px;
  }
  .page-news .news-subscribe__inner{
    grid-template-columns: 1fr 240px;
    padding: 34px 30px 30px;
    align-items: center;
  }
}

@media (min-width: 1024px){
  .page-news .news-layout{
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
  }
  .page-news .news-sidebar__sticky{
    position: sticky;
    top: 104px;
  }
  .page-news .news-filter{
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    gap: 10px;
    padding-bottom: 0;
  }
  .page-news .news-filter .g-filter__btn{
    justify-content: space-between;
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 12px;
  }
  .page-news .news-card{
    flex-direction: row;
  }
  .page-news .news-card__media{
    width: 180px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }
  .page-news .news-card--featured .news-card__media{
    width: 38%;
  }
  .page-news .news-card--featured .news-card__title{
    font-size: 28px;
  }
  .page-news .news-card__title{
    font-size: 22px;
  }
  .page-news .news-card__summary{
    font-size: 15px;
  }
  .page-news .news-rhythm__visual img{
    min-height: 340px;
  }
  .page-news .news-subscribe__title{
    font-size: 30px;
  }
}
