.page-news {
  --news-gold: var(--yz-color-gold);
  --news-action: var(--yz-color-action);
  --news-primary: var(--yz-color-primary);
  --news-secondary: var(--yz-color-secondary);
  --news-bg: var(--yz-color-bg);
  --news-text: var(--yz-color-text);
  --news-text-light: var(--yz-color-text-light);
  --news-white: var(--yz-color-white);
  --news-border: var(--yz-border-w);
  --news-radius: var(--yz-radius);
  --news-shadow: var(--yz-shadow);
  --news-shadow-sm: var(--yz-shadow-sm);
  --news-font-heading: var(--yz-font-heading);
  --news-font-body: var(--yz-font-body);
  --news-font-mono: var(--yz-font-mono);
  --news-transition: var(--yz-transition);

  background-color: var(--news-bg);
  font-family: var(--news-font-body);
  color: var(--news-text);
}

.page-news .yz-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.page-news .yz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-light);
}

.page-news .yz-breadcrumb a {
  color: var(--news-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--news-transition);
}

.page-news .yz-breadcrumb a:hover {
  color: var(--news-action);
}

.page-news .yz-breadcrumb__sep {
  color: var(--news-gold);
}

.page-news .yz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--news-gold);
  border-radius: 999px;
  font-family: var(--news-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--news-gold);
  background: rgba(201, 169, 110, 0.08);
  text-transform: uppercase;
}

.page-news .yz-vert {
  writing-mode: vertical-rl;
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--news-primary);
  opacity: 0.6;
  white-space: nowrap;
  text-transform: uppercase;
}

.page-news .yz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--news-radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--news-transition), box-shadow var(--news-transition), background-color var(--news-transition), border-color var(--news-transition);
}

.page-news .yz-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.page-news .yz-btn--outline {
  border-color: var(--news-gold);
  color: var(--news-gold);
  background: transparent;
  box-shadow: 3px 3px 0 rgba(201, 169, 110, 0.18);
}

.page-news .yz-btn--outline:hover {
  background: var(--news-gold);
  color: var(--news-primary);
}

.page-news .yz-btn--small {
  padding: 9px 18px;
  font-size: 13px;
}

.page-news .yz-btn--block {
  width: 100%;
}

.page-news [data-reveal] {
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-news .yz-reveal-init {
  opacity: 0;
  transform: translateY(20px);
}

.page-news .yz-is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.page-news .news-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10, 30, 63, 0.98) 0%, rgba(20, 58, 107, 0.94) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(201, 169, 110, 0.04) 12px, rgba(201, 169, 110, 0.04) 13px);
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--news-gold) 0%, var(--news-action) 100%);
  opacity: 0.8;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.page-news .news-hero__badge {
  align-self: flex-start;
  margin-bottom: 20px;
  border-color: rgba(201, 169, 110, 0.5);
  color: var(--news-gold);
  background: rgba(201, 169, 110, 0.12);
}

.page-news .news-hero__title {
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--news-white);
  max-width: 700px;
  margin: 0 0 18px;
  text-wrap: balance;
}

.page-news .news-hero__desc {
  font-family: var(--news-font-body);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  margin: 0 0 28px;
}

.page-news .news-hero__vert {
  position: absolute;
  top: 80px;
  right: 40px;
  color: rgba(201, 169, 110, 0.65);
  font-size: 14px;
}

.page-news .news-hero__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--news-radius);
  margin-top: 12px;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 20px;
  padding-bottom: 80px;
}

.page-news .news-sidebar {
  background: var(--news-white);
  border: 2px solid var(--news-primary);
  box-shadow: var(--news-shadow);
  border-radius: var(--news-radius);
  margin-bottom: 36px;
  overflow: hidden;
}

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

.page-news .news-filter__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 30, 63, 0.15);
}

.page-news .news-filter__index {
  font-family: var(--news-font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--news-gold);
}

.page-news .news-filter__title {
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--news-primary);
  margin: 0;
  letter-spacing: 0.02em;
}

.page-news .news-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  border: 2px solid var(--news-primary);
  border-radius: var(--news-radius);
  background: transparent;
  color: var(--news-primary);
  cursor: pointer;
  transition: background-color var(--news-transition), color var(--news-transition), box-shadow var(--news-transition), border-color var(--news-transition);
}

.page-news .news-tag:hover {
  background: rgba(10, 30, 63, 0.06);
}

.page-news .news-tag--active {
  background: var(--news-action);
  border-color: var(--news-action);
  color: var(--news-white);
  box-shadow: 2px 2px 0 rgba(255, 106, 0, 0.3);
}

.page-news .news-hot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid var(--news-primary);
  position: relative;
}

.page-news .news-hot__img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--news-radius);
  opacity: 0.12;
  pointer-events: none;
}

.page-news .news-hot__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-hot__title {
  position: relative;
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--news-primary);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-news .news-hot__desc {
  position: relative;
  font-size: 14px;
  color: var(--news-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}

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

.page-news .news-hot__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(10, 30, 63, 0.15);
}

.page-news .news-hot__link {
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--news-primary);
  text-decoration: none;
  transition: color var(--news-transition);
}

.page-news .news-hot__link:hover {
  color: var(--news-action);
}

.page-news .news-hot__count {
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-text-light);
  white-space: nowrap;
}

.page-news .news-hot__btn {
  margin-top: 20px;
  width: 100%;
}

.page-news .news-main {
  min-width: 0;
}

.page-news .news-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .news-section-index {
  font-family: var(--news-font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--news-gold);
}

.page-news .news-section-heading {
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--news-primary);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.page-news .news-section-line {
  flex: 1;
  height: 3px;
  min-width: 30px;
  background: linear-gradient(90deg, var(--news-gold), rgba(201, 169, 110, 0.15));
}

.page-news .news-section-total {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-light);
  white-space: nowrap;
}

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

.page-news .news-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  background: var(--news-white);
  border: 2px solid var(--news-primary);
  border-radius: var(--news-radius);
  padding: 20px 16px;
  box-shadow: var(--news-shadow);
  transition: transform var(--news-transition), box-shadow var(--news-transition), border-color var(--news-transition);
}

.page-news .news-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(10, 30, 63, 0.14);
  border-color: var(--news-secondary);
}

.page-news .news-card__index {
  font-family: var(--news-font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--news-gold);
  line-height: 1.2;
}

.page-news .news-card__main {
  min-width: 0;
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .news-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  border: 1px solid var(--news-primary);
  border-radius: var(--news-radius);
  color: var(--news-primary);
  background: rgba(10, 30, 63, 0.04);
}

.page-news .news-card__date {
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-text-light);
}

.page-news .news-card__read {
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-gold);
}

.page-news .news-card__title {
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  color: var(--news-primary);
  margin: 0 0 10px;
  text-wrap: balance;
}

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

.page-news .news-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--news-action);
  cursor: pointer;
  transition: color var(--news-transition);
}

.page-news .news-card__toggle:hover {
  color: var(--news-primary);
}

.page-news .news-card__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
  font-size: 13px;
  transition: transform var(--news-transition);
}

.page-news .news-card.is-open .news-card__toggle-icon {
  transform: rotate(45deg);
}

.page-news .news-card__detail {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(10, 30, 63, 0.2);
}

.page-news .news-card__detail p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--news-text);
  margin: 0 0 12px;
}

.page-news .news-card__more {
  display: inline-block;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--news-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--news-gold);
  padding-bottom: 2px;
  transition: color var(--news-transition), border-color var(--news-transition);
}

.page-news .news-card__more:hover {
  color: var(--news-action);
  border-bottom-color: var(--news-action);
}

.page-news .news-card__thumb {
  display: none;
}

.page-news .news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid rgba(10, 30, 63, 0.12);
}

.page-news .news-pagination__btn {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-family: var(--news-font-mono);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--news-primary);
  border-radius: var(--news-radius);
  background: var(--news-white);
  color: var(--news-primary);
  cursor: pointer;
  transition: background-color var(--news-transition), color var(--news-transition), box-shadow var(--news-transition);
}

.page-news .news-pagination__btn:hover {
  background: rgba(10, 30, 63, 0.06);
}

.page-news .news-pagination__btn--active,
.page-news .news-pagination__btn--active:hover {
  background: var(--news-action);
  border-color: var(--news-action);
  color: var(--news-white);
  box-shadow: 2px 2px 0 rgba(255, 106, 0, 0.3);
  cursor: default;
}

.page-news .news-pagination__ellipsis {
  font-family: var(--news-font-mono);
  font-size: 14px;
  color: var(--news-text-light);
  padding: 0 2px;
}

.page-news .news-pagination__next {
  margin-left: auto;
  padding: 8px 16px;
  font-family: var(--news-font-heading);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--news-primary);
  border-radius: var(--news-radius);
  background: transparent;
  color: var(--news-primary);
  cursor: pointer;
  transition: background-color var(--news-transition), color var(--news-transition), box-shadow var(--news-transition);
}

.page-news .news-pagination__next:hover {
  background: var(--news-primary);
  color: var(--news-white);
  box-shadow: 2px 2px 0 rgba(10, 30, 63, 0.3);
}

.page-news .news-timeline {
  position: relative;
  margin-top: 56px;
  background: var(--news-primary);
  border-radius: var(--news-radius);
  overflow: hidden;
}

.page-news .news-timeline__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.page-news .news-timeline__content {
  position: relative;
  z-index: 1;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news .news-timeline__label {
  font-family: var(--news-font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--news-gold);
  margin-bottom: 12px;
}

.page-news .news-timeline__title {
  font-family: var(--news-font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  color: var(--news-white);
  margin: 0 0 12px;
  text-wrap: balance;
}

.page-news .news-timeline__desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
  max-width: 720px;
}

.page-news .news-timeline .yz-btn {
  align-self: flex-start;
}

@media (min-width: 640px) {
  .page-news .news-hero {
    padding-top: 96px;
    padding-bottom: 120px;
  }

  .page-news .news-hero__title {
    font-size: 56px;
  }

  .page-news .news-hero__desc {
    font-size: 18px;
  }

  .page-news .news-hero__img {
    max-height: 220px;
  }

  .page-news .news-hero__vert {
    right: 60px;
  }

  .page-news .news-card {
    grid-template-columns: 40px 1fr;
    padding: 24px 20px;
  }

  .page-news .news-card__title {
    font-size: 22px;
  }

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

  .page-news .news-card__thumb {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 80px;
    border: 2px solid rgba(10, 30, 63, 0.2);
    border-radius: var(--news-radius);
    overflow: hidden;
  }

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

  .page-news .news-card__main {
    padding-right: 140px;
  }

  .page-news .news-timeline__content {
    padding: 48px 40px;
  }

  .page-news .news-timeline__title {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero {
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .page-news .news-hero__title {
    font-size: 68px;
    max-width: 820px;
  }

  .page-news .news-hero__desc {
    font-size: 18px;
    max-width: 700px;
  }

  .page-news .news-hero__img {
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 400px;
    max-height: 200px;
    margin-top: 0;
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  }

  .page-news .news-hero__vert {
    right: 480px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(201, 169, 110, 0.8);
    font-size: 15px;
  }

  .page-news .news-layout {
    grid-template-columns: 300px 1fr;
    gap: 48px;
    padding-top: 40px;
  }

  .page-news .news-sidebar {
    position: relative;
    align-self: start;
    margin-bottom: 0;
  }

  .page-news .news-sidebar__top {
    padding: 28px 24px;
  }

  .page-news .news-filter__title {
    font-size: 22px;
  }

  .page-news .news-filter__list {
    flex-direction: column;
    gap: 6px;
  }

  .page-news .news-tag {
    width: 100%;
  }

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

  .page-news .news-section-heading {
    font-size: 32px;
  }

  .page-news .news-list {
    gap: 24px;
  }

  .page-news .news-card {
    grid-template-columns: 48px 1fr;
    padding: 28px 24px;
  }

  .page-news .news-card__index {
    font-size: 22px;
  }

  .page-news .news-card__title {
    font-size: 24px;
  }

  .page-news .news-card__thumb {
    width: 220px;
    height: 140px;
    top: 24px;
    right: 24px;
  }

  .page-news .news-card__main {
    padding-right: 250px;
  }

  .page-news .news-timeline__content {
    padding: 56px 48px;
  }

  .page-news .news-timeline__title {
    font-size: 32px;
  }

  .page-news .news-timeline__desc {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .page-news .news-hero__img {
    right: 80px;
    width: 460px;
  }

  .page-news .news-hero__vert {
    right: 560px;
  }
}
