.page-news{
  --news-aside: 340px;
  --news-gap: 44px;
  --t-gold-deep: #8C6D1F;
  background-color: var(--c-bg);
  background-image:
    linear-gradient(rgba(15,43,61,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,43,61,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 40px 0 80px;
}

.page-news-container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-news .breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .85rem;
  color: var(--c-text-2);
}

.page-news .breadcrumb a{
  color: var(--c-text-2);
  text-decoration: none;
  transition: color .25s;
}

.page-news .breadcrumb a:hover{
  color: var(--c-primary);
}

.page-news .breadcrumb-sep{
  opacity: .5;
}

.page-news-hero{
  padding-bottom: 30px;
}

.page-news-eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-deep);
}

.page-news-eyebrow .eyebrow-line{
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  flex: 0 0 auto;
}

.page-news-title-row{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news h1{
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.16;
  color: var(--c-text);
}

.page-news h1 .title-slash{
  color: var(--c-gold);
  font-weight: 300;
  margin: 0 6px;
}

.page-news-lead{
  margin: 16px 0 0;
  max-width: 660px;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-text-2);
}

.page-news-stamp{
  flex: 0 0 auto;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  padding: 18px 22px 16px;
  background: var(--c-deep);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: var(--radius);
  text-align: center;
  color: rgba(255,255,255,.8);
  box-shadow: var(--shadow-sm);
}

.page-news-stamp strong{
  display: block;
  font-family: var(--t-mono);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-gold);
}

.page-news-stamp span{
  display: block;
  margin-top: 6px;
  font-size: .7rem;
  letter-spacing: .08em;
}

.page-news-layout{
  display: grid;
  gap: var(--news-gap);
  padding-top: 36px;
}

.page-news-stream,
.page-news-aside{
  min-width: 0;
}

.page-news-stream-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}

.page-news-stream-header h2{
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-text);
}

.page-news-stream-count{
  font-family: var(--t-mono);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-primary);
  background: rgba(0,179,134,.1);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.news-feature-card{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 36px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}

.news-feature-card:hover{
  box-shadow: var(--shadow-md);
}

.news-feature-media{
  position: relative;
  aspect-ratio: 5 / 3;
  min-height: 180px;
  overflow: hidden;
  background: var(--c-deep-2);
}

@supports not (aspect-ratio: 5 / 3){
  .news-feature-media{
    height: 220px;
  }
}

.news-feature-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-index{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: var(--t-mono);
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-deep);
  background: var(--c-gold);
  box-shadow: 0 2px 10px rgba(15,43,61,.2);
}

.news-feature-body{
  padding: 24px;
}

.news-meta-line{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.news-cat-tag{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--t-gold-deep);
  background: rgba(212,175,55,.14);
}

.news-cat-label{
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(255,255,255,.6);
}

.news-feature-body h3{
  margin: 14px 0 8px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--c-text);
}

.news-feature-body p{
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.news-feature-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-border);
  font-size: .8rem;
  color: var(--c-text-2);
}

.news-meta-item{
  position: relative;
  padding-left: 12px;
}

.news-meta-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-online);
  transform: translateY(-50%);
}

.news-timeline{
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-timeline::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  bottom: 10px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(212,175,55,.7), rgba(212,175,55,.7) 6px, transparent 6px, transparent 12px);
  opacity: .55;
}

.news-timeline-item{
  position: relative;
  padding: 0 0 30px 52px;
  border-radius: 14px;
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}

.news-timeline-item:last-child{
  padding-bottom: 0;
}

.news-timeline-item:hover{
  background: rgba(0,179,134,.07);
}

.news-timeline-index{
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-deep);
  font-family: var(--t-mono);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.news-timeline-content{
  padding: 20px 20px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.news-timeline-item:hover .news-timeline-content{
  border-color: rgba(0,179,134,.35);
  box-shadow: var(--shadow-sm);
}

.news-timeline-content h3{
  margin: 12px 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--c-text);
}

.news-timeline-content p{
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.news-timeline-time{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-2);
}

.news-timeline-time::before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-online);
}

.news-timeline-media{
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.news-timeline-media img{
  display: block;
  width: 100%;
  height: auto;
}

.news-side-block{
  position: relative;
  padding: 22px;
  margin-bottom: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.news-side-block h2{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--c-text-2);
}

.news-side-block h2::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--c-border), transparent);
}

.news-filter-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-filter-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
  background: var(--c-surface);
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.news-filter-btn span{
  font-family: var(--t-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-gold);
  transition: color .25s var(--ease);
}

.news-filter-btn:hover{
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-deep);
  transform: translateY(-2px);
}

.news-filter-btn:hover span{
  color: var(--c-deep);
}

.news-focus-avatar{
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-deep);
}

.news-focus-avatar img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-focus-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text);
}

.news-focus-desc{
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.news-focus-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-feature-topic{
  background: var(--c-deep);
  border-color: rgba(212,175,55,.35);
  overflow: hidden;
}

.news-feature-topic h2{
  color: rgba(255,255,255,.72);
}

.news-feature-topic h2::after{
  background: linear-gradient(to right, rgba(255,255,255,.18), transparent);
}

.news-dragon{
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 88%;
  height: auto;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.news-topic-inner{
  position: relative;
  z-index: 1;
}

.news-topic-img{
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}

.news-topic-img img{
  display: block;
  width: 100%;
  height: auto;
}

.news-topic-title{
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-gold);
}

.news-topic-desc{
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.news-topic-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.news-topic-more{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
}

.news-topic-more::after{
  content: "→";
  font-family: var(--t-mono);
}

.news-topic-more:hover{
  background: rgba(255,255,255,.1);
}

.news-feature-topic:hover .news-topic-more,
.news-feature-topic:focus-within .news-topic-more{
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.news-service-links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-service-link{
  display: block;
  padding: 12px 8px;
  border-radius: 12px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-deep);
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.news-service-link:hover{
  background: var(--c-primary);
  transform: translateY(-2px);
}

.news-support-contact{
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--c-border);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--c-text-2);
}

.news-support-contact a{
  color: var(--c-primary);
  text-decoration: none;
}

.news-support-contact a:hover{
  text-decoration: underline;
}

@media (hover: none){
  .news-topic-more{
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (min-width: 768px){
  .page-news-title-row{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-news-stamp{
    margin-bottom: 4px;
  }

  .news-feature-card{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  }

  .news-feature-body{
    padding: 28px;
  }

  .news-side-block{
    padding: 24px;
  }
}

@media (min-width: 992px){
  .page-news-layout{
    grid-template-columns: minmax(0, 1fr) var(--news-aside);
    gap: var(--news-gap);
    padding-top: 40px;
  }

  .page-news-aside{
    position: sticky;
    top: 24px;
    align-self: start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .page-news-aside::-webkit-scrollbar{
    display: none;
  }

  .news-timeline-content h3{
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-news *,
  .page-news *::before,
  .page-news *::after{
    transition: none !important;
    animation: none !important;
  }
}
