.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

.page-news {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

.page-news img {
  max-width: 100%;
  height: auto;
}

.page-news .breadcrumbs {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--c-gray);
}

.page-news .news-hero {
  padding: 32px 0 26px;
  position: relative;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.page-news .news-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-hero__eyebrow {
  align-self: flex-start;
  border: 1px solid var(--c-green);
  color: var(--c-green);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-news .news-hero__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.16;
  color: var(--c-green);
  margin: 0;
  max-width: 800px;
}

.page-news .news-hero__lead {
  font-size: 18px;
  color: var(--c-ink);
  margin: 0;
  max-width: 720px;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.page-news .news-hero__stat {
  background: var(--c-blue);
  color: var(--c-bg);
  padding: 12px 16px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-news .news-hero__num {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  color: var(--c-gold);
}

.page-news .news-hero__desc {
  font-size: 13px;
  color: rgba(245, 239, 225, 0.82);
}

.page-news .news-hero__trust {
  font-size: 14px;
  color: var(--c-gray);
  max-width: 720px;
  margin: 10px 0 0;
}

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 36px 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-green);
  position: relative;
}

.page-news .section-head__idx {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 44px;
  line-height: 0.85;
  color: var(--c-gold);
  margin-top: 4px;
}

.page-news .section-head__title h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-green);
  margin: 0;
}

.page-news .section-head__sub {
  font-size: 14px;
  color: var(--c-gray);
  margin: 4px 0 0;
}

.page-news .loss-section {
  padding: 10px 0 40px;
  position: relative;
  background: linear-gradient(135deg, rgba(31, 92, 74, 0.07), transparent 55%);
}

.page-news .loss-layout {
  display: grid;
  gap: 24px;
}

.page-news .loss-dashboard {
  background: var(--c-deep-green);
  color: var(--c-bg);
  padding: 22px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.page-news .loss-dashboard::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(196, 155, 46, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .loss-dashboard__visual {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 18px;
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

.page-news .loss-dashboard__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 18px;
}

.page-news .loss-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .loss-bar {
  display: grid;
  grid-template-columns: 76px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.page-news .loss-bar__label {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: rgba(245, 239, 225, 0.84);
}

.page-news .loss-bar__track {
  height: 10px;
  background: rgba(245, 239, 225, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.page-news .loss-bar__fill {
  display: block;
  height: 100%;
  background: var(--c-gold);
  transition: filter 0.2s ease;
}

.page-news .loss-bar--peak .loss-bar__fill {
  background: var(--c-red);
}

.page-news .loss-bar__value {
  font-family: var(--font-title);
  font-weight: 900;
  text-align: right;
  color: var(--c-bg);
}

.page-news .loss-bar:hover .loss-bar__fill {
  filter: brightness(1.15);
}

.page-news .loss-bar:hover .loss-bar__value {
  color: var(--c-gold);
}

.page-news .loss-dashboard__footer {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(245, 239, 225, 0.68);
  border-top: 1px solid rgba(245, 239, 225, 0.2);
  padding-top: 14px;
}

.page-news .loss-panel {
  background: var(--c-bg);
  border: 2px solid var(--c-green);
  padding: 20px;
  position: relative;
}

.page-news .loss-panel__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-green);
  margin: 0 0 12px;
}

.page-news .loss-panel__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .loss-panel__list li {
  padding-left: 16px;
  border-left: 4px solid var(--c-red);
}

.page-news .loss-panel__desc {
  font-size: 14px;
  color: var(--c-gray);
  margin: 0 0 16px;
}

.page-news .loss-panel .fav-toggle {
  margin-top: 8px;
}

.page-news .loss-panel__note {
  font-size: 12px;
  color: var(--c-gray);
  margin: 16px 0 0;
  border-top: 1px dotted var(--c-line);
  padding-top: 10px;
}

.page-news .reports-section {
  padding: 30px 0 40px;
  background: linear-gradient(135deg, rgba(31, 92, 74, 0.08), transparent 60%);
}

.page-news .report-area {
  padding: 24px 0 0;
}

.page-news .report-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
}

.page-news .report-filter__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-news .report-filter__label {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--c-green);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-green);
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  background: rgba(245, 239, 225, 0.6);
  transition: background 0.15s ease, color 0.15s ease;
}

.page-news .report-filter__label:hover {
  background: var(--c-bg);
}

.page-news .report-filter__input:checked + .report-filter__label {
  background: var(--c-green);
  color: var(--c-bg);
}

.page-news .report-filter__input:focus-visible + .report-filter__label {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}

.page-news #filter-all:checked ~ .reports-list .report-item {
  display: block;
}

.page-news #filter-uefa:checked ~ .reports-list .report-item,
.page-news #filter-epl:checked ~ .reports-list .report-item,
.page-news #filter-seriea:checked ~ .reports-list .report-item,
.page-news #filter-acl:checked ~ .reports-list .report-item,
.page-news #filter-championship:checked ~ .reports-list .report-item,
.page-news #filter-laliga:checked ~ .reports-list .report-item {
  display: none;
}

.page-news #filter-uefa:checked ~ .reports-list .report-item[data-tag="uefa"],
.page-news #filter-epl:checked ~ .reports-list .report-item[data-tag="epl"],
.page-news #filter-seriea:checked ~ .reports-list .report-item[data-tag="seriea"],
.page-news #filter-acl:checked ~ .reports-list .report-item[data-tag="acl"],
.page-news #filter-championship:checked ~ .reports-list .report-item[data-tag="championship"],
.page-news #filter-laliga:checked ~ .reports-list .report-item[data-tag="laliga"] {
  display: block;
}

.page-news .reports-list {
  margin-top: 20px;
}

.page-news .report-item {
  display: block;
  border-bottom: 1px solid var(--c-line);
}

.page-news .report-item__details {
  display: block;
}

.page-news .report-item__summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

.page-news .report-item__summary::-webkit-details-marker {
  display: none;
}

.page-news .report-item__no {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-gold);
  margin-top: 4px;
}

.page-news .report-item__main {
  flex: 1;
  min-width: 0;
}

.page-news .report-item__tagrow {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.page-news .report-item__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-ink);
  margin: 0;
}

.page-news .report-item__title:hover {
  color: var(--c-green);
}

.page-news .report-item__readtime {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--c-gray);
  border-right: 3px solid var(--c-gold);
  padding-right: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  white-space: nowrap;
}

.page-news .report-item__body {
  padding: 0 0 18px 30px;
  margin-left: 20px;
  border-left: 2px solid var(--c-line);
  color: var(--c-gray);
  font-size: 15px;
}

.page-news .report-item__body p {
  margin: 0;
}

.page-news .reports-section__visual {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
  margin: 24px 0 12px;
  border: 2px solid var(--c-line);
}

.page-news .reports-section__tip {
  font-size: 13px;
  color: var(--c-gray);
  border: 1px dashed var(--c-line);
  padding: 10px 12px;
  margin: 0;
}

.page-news .version-section {
  background: var(--c-deep-blue);
  color: var(--c-bg);
  padding: 36px 0 44px;
}

.page-news .section-head--inverse {
  border-bottom-color: rgba(245, 239, 225, 0.3);
}

.page-news .section-head--inverse .section-head__title h2 {
  color: var(--c-bg);
}

.page-news .section-head--inverse .section-head__sub {
  color: rgba(245, 239, 225, 0.7);
}

.page-news .version-layout {
  display: grid;
  gap: 32px;
}

.page-news .version-timeline {
  padding-left: 24px;
  border-left: 2px solid rgba(245, 239, 225, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .version-item {
  position: relative;
}

.page-news .version-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 2px solid var(--c-deep-blue);
}

.page-news .version-item__badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-deep-blue);
  background: var(--c-gold);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.page-news .version-item h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 19px;
  margin: 6px 0 8px;
  line-height: 1.4;
}

.page-news .version-item p {
  margin: 0;
  color: rgba(245, 239, 225, 0.82);
  font-size: 15px;
}

.page-news .version-figure {
  margin: 0;
}

.page-news .version-figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 7 / 4;
  border: 2px solid rgba(245, 239, 225, 0.25);
}

.page-news .version-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(245, 239, 225, 0.68);
  border-left: 3px solid var(--c-gold);
  padding-left: 10px;
}

.page-news .version-trust {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 239, 225, 0.28);
  border-left: 4px solid var(--c-gold);
  font-size: 14px;
  color: rgba(245, 239, 225, 0.85);
}

.page-news .version-trust p {
  margin: 0;
}

.page-news .special-section {
  padding: 36px 0 40px;
}

.page-news .special-layout {
  display: grid;
  gap: 20px;
}

.page-news .special-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}

.page-news .special-card__img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .special-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.page-news .special-card__body .tag {
  align-self: flex-start;
}

.page-news .special-card__body h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-green);
  margin: 0;
}

.page-news .special-card__body p {
  font-size: 14px;
  color: var(--c-gray);
  margin: 0 0 10px;
}

.page-news .special-card__body .btn {
  margin-top: auto;
}

.page-news .special-section__foot {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--c-gray);
}

.page-news .news-outro {
  background: var(--c-deep-green);
  color: var(--c-bg);
  padding: 36px 0 44px;
}

.page-news .news-outro h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--c-bg);
}

.page-news .news-outro p {
  color: rgba(245, 239, 225, 0.82);
  max-width: 680px;
}

.page-news .news-outro .btn--ghost {
  border-color: rgba(245, 239, 225, 0.6);
  color: var(--c-bg);
}

.page-news .news-outro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 40px 0 34px;
  }

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

  .page-news .news-hero__lead {
    font-size: 20px;
  }

  .page-news .section-head {
    margin-top: 44px;
  }

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

  .page-news .section-head__title h2 {
    font-size: 34px;
  }

  .page-news .loss-layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    align-items: start;
  }

  .page-news .loss-dashboard {
    padding: 28px;
  }

  .page-news .loss-dashboard__visual {
    width: calc(100% + 56px);
    margin: -28px -28px 20px;
  }

  .page-news .loss-panel {
    padding: 24px;
  }

  .page-news .report-item__summary {
    gap: 18px;
  }

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

  .page-news .report-item__readtime {
    font-size: 13px;
  }

  .page-news .version-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
    align-items: start;
  }

  .page-news .special-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-outro__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
