.page-news {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.page-news .breadcrumb {
  padding-top: 28px;
  padding-bottom: 4px;
}

.page-news .journal-page-top {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.32), transparent 46%),
    linear-gradient(135deg, var(--navy) 0%, #0B2A4A 62%, #0F3D7A 100%);
}

.page-news .journal-page-top::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 8px;
  transform: rotate(18deg);
}

.page-news .journal-page-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background:
    linear-gradient(90deg, var(--gold) 0 22%, var(--light-gold) 22% 36%, transparent 36% 60%, var(--signal-red) 60% 78%, var(--gold) 78% 100%);
}

.page-news .journal-page-top .container {
  position: relative;
  z-index: 1;
}

.page-news .journal-page-top .page-title {
  margin: 8px 0 16px;
}

.page-news .journal-page-top .page-desc {
  max-width: 64ch;
}

.page-news .journal-hero {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding-bottom: 8px;
}

.page-news .journal-hero-img {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 52px) 100%, 0 100%);
  box-shadow: 0 20px 44px rgba(8, 31, 55, 0.22);
}

.page-news .img-hero,
.page-news .img-landscape,
.page-news .img-portrait {
  position: relative;
  display: block;
  overflow: hidden;
}

.page-news .img-hero img,
.page-news .img-landscape img,
.page-news .img-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .journal-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 72px;
}

.page-news .journal-aside-inner {
  position: sticky;
  top: 96px;
}

.page-news .journal-aside-title {
  margin: 8px 0 20px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--navy);
}

.page-news .category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--navy);
}

.page-news .category-item {
  padding: 16px 0;
  border-bottom: 1px dashed var(--slate);
}

.page-news .category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.page-news .category-head > a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease), color 0.2s ease;
}

.page-news .category-head > a:hover {
  color: var(--royal);
  background-size: 100% 2px;
}

.page-news .category-count {
  flex-shrink: 0;
  padding: 3px 10px;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.page-news .category-post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .category-post-list li + li {
  margin-top: 6px;
}

.page-news .category-post-list a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .category-post-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 2px;
  background: var(--gold);
  transition: background 0.2s ease, width 0.2s ease;
}

.page-news .category-post-list a:hover {
  color: var(--signal-red);
}

.page-news .category-post-list a:hover::before {
  width: 9px;
  background: var(--signal-red);
}

.page-news .journal-aside-note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate);
  border-left: 3px solid var(--gold);
}

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

.page-news .journal-main .section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.page-news .section-index {
  font-family: var(--font-num);
  font-size: 52px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--gold);
  -webkit-text-stroke: 1.5px rgba(212, 160, 23, 0.5);
}

.page-news .journal-main .section-title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
}

.page-news .journal-main .section-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}

.page-news .journal-databoard {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
  background: #fff;
  border: 1px solid rgba(8, 31, 55, 0.12);
  box-shadow: 0 10px 28px rgba(8, 31, 55, 0.06);
}

.page-news .journal-databoard-img {
  min-height: 160px;
}

.page-news .journal-databoard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
}

.page-news .stat-item {
  padding: 20px 18px;
  border-bottom: 1px dashed rgba(8, 31, 55, 0.14);
}

.page-news .stat-item:nth-child(even) {
  border-left: 1px dashed rgba(8, 31, 55, 0.14);
}

.page-news .stat-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.page-news .stat-item dt {
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.page-news .stat-item dd {
  margin: 0;
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.page-news .stat-num {
  color: var(--gold);
  font-size: 34px;
}

.page-news .stat-unit {
  margin-left: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
}

.page-news .journal-list {
  border-top: 3px solid var(--navy);
}

.page-news .journal-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px dashed var(--slate);
  transition: background 0.25s ease;
}

.page-news .journal-item:hover {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.07), transparent 68%);
}

.page-news .journal-num {
  font-family: var(--font-num);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(8, 31, 55, 0.25);
  transition: color 0.25s ease;
}

.page-news .journal-item:hover .journal-num {
  color: var(--signal-red);
}

.page-news .journal-item-body {
  min-width: 0;
}

.page-news .journal-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px 3px 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-news .journal-item-title {
  margin: 0 0 6px;
}

.page-news .journal-item-title a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease), color 0.2s ease;
}

.page-news .journal-item-title a:hover {
  color: var(--royal);
  background-size: 100% 2px;
}

.page-news .journal-item-summary {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
}

.page-news .journal-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.page-news .journal-item-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--signal-red);
}

.page-news .journal-item-time {
  font-size: 12px;
  color: var(--slate);
}

.page-news .journal-item-link {
  margin-left: auto;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 160, 23, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .journal-item-link:hover {
  color: var(--signal-red);
  border-color: var(--signal-red);
}

.page-news .journal-featured {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--navy);
}

.page-news .journal-featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 120px solid rgba(212, 160, 23, 0.12);
  border-left: 120px solid transparent;
  pointer-events: none;
}

.page-news .journal-featured::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--signal-red), var(--gold));
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.page-news .section-head-on-dark .section-title {
  color: #fff;
}

.page-news .section-head-on-dark .section-desc {
  color: rgba(248, 250, 252, 0.62);
}

.page-news .journal-featured .section-index {
  color: var(--light-gold);
  -webkit-text-stroke: 1.5px rgba(245, 199, 106, 0.6);
}

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

.page-news .featured-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 160, 23, 0.24);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.page-news .featured-card:hover {
  border-color: var(--signal-red);
  transform: translateY(-4px);
}

.page-news .featured-card-img {
  margin: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 44px) 100%, 0 100%);
}

.page-news .featured-card-img-portrait {
  max-height: 320px;
}

.page-news .featured-card-img-portrait img {
  object-position: center 32%;
}

.page-news .featured-card-body {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 30px;
}

.page-news .featured-card-body h3 {
  margin: 12px 0;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.page-news .featured-card-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.72);
}

.page-news .featured-link {
  align-self: flex-start;
  margin-top: 6px;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--light-gold);
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 160, 23, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .featured-link:hover {
  color: #fff;
  border-color: #fff;
}

.page-news .journal-cta {
  padding: 72px 0;
}

.page-news .journal-cta-inner {
  position: relative;
  padding: 42px 32px;
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.04), transparent 42%),
    linear-gradient(135deg, var(--paper), #fff);
  border: 1px solid rgba(8, 31, 55, 0.1);
  border-left: 5px solid var(--gold);
  box-shadow: 0 18px 40px rgba(8, 31, 55, 0.07);
}

.page-news .journal-cta-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 140px;
  height: 5px;
  background: var(--signal-red);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.page-news .journal-cta-inner h2 {
  margin: 8px 0 12px;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--navy);
}

.page-news .journal-cta-inner > p {
  max-width: 58ch;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.page-news .journal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 640px) {
  .page-news .journal-databoard {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-news .journal-databoard-img {
    height: 100%;
    min-height: 220px;
  }

  .page-news .journal-databoard-stats .stat-item {
    border-bottom: 1px dashed rgba(8, 31, 55, 0.14);
  }

  .page-news .journal-databoard-stats .stat-item:nth-child(even) {
    border-left: 1px dashed rgba(8, 31, 55, 0.14);
  }

  .page-news .journal-databoard-stats .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (min-width: 960px) {
  .page-news .journal-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .page-news .journal-aside {
    width: 260px;
    flex-shrink: 0;
  }

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

  .page-news .journal-item {
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 34px 8px;
  }

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

  .page-news .journal-item-title a {
    font-size: 19px;
  }

  .page-news .journal-item-summary {
    font-size: 15px;
  }

  .page-news .featured-grid {
    grid-template-columns: 7fr 5fr;
    gap: 32px;
  }

  .page-news .featured-card-body h3 {
    font-size: 24px;
  }

  .page-news .featured-card-img-portrait {
    max-height: none;
  }
}

@media (min-width: 1200px) {
  .page-news .journal-cta-inner {
    padding: 56px;
  }

  .page-news .journal-cta-inner h2 {
    font-size: 28px;
  }
}
