.news-page-body {
  background: #eceef3;
}

.news-page-shell {
  padding: 24px 0 40px;
}

.news-page-panel {
  border: 1px solid #d8dce4;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 20, 31, 0.08);
}

.news-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 0;
  padding: 18px;
}

.news-page-main {
  min-width: 0;
  padding-right: 24px;
}

.news-page-back {
  display: inline-flex;
  margin-bottom: 14px;
  color: #6b7285;
  font-size: 12px;
  font-weight: 700;
}

.news-page-back:hover,
.news-page-back:focus-visible {
  color: var(--accent);
}

.news-page-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-page-title {
  margin: 0;
  color: #27457b;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.news-page-date {
  margin: 10px 0 0;
  color: #6c7386;
  font-size: 13px;
  font-weight: 700;
}

.news-page-hero-image {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #d8dce4;
  background: #f4f6fa;
}

.news-page-hero-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.news-page-body-copy {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  color: #4d5670;
  font-size: 17px;
  line-height: 1.85;
}

.news-page-body-copy p {
  margin: 0;
}

.punishment-status-panel {
  margin-top: 28px;
  border: 1px solid #d8dce4;
  background: linear-gradient(180deg, #fbfcff 0%, #f2f5fb 100%);
  border-radius: 20px;
  padding: 18px;
}

.punishment-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.punishment-status-kicker {
  margin: 0 0 6px;
  color: #b87c28;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.punishment-status-title {
  margin: 0;
  color: #233454;
  font-size: clamp(18px, 3vw, 24px);
}

.punishment-status-toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #f2a233 0%, #c86b20 100%);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(200, 107, 32, 0.24);
}

.punishment-status-content {
  margin-top: 18px;
}

.punishment-status-empty {
  margin: 0;
  color: #677189;
  line-height: 1.7;
}

.punishment-status-grid {
  display: grid;
  gap: 12px;
}

.punishment-status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(184, 124, 40, 0.16);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 20, 31, 0.06);
}

.punishment-status-name {
  margin: 0;
  color: #22314d;
  font-size: 18px;
  font-weight: 800;
}

.punishment-status-meta {
  margin: 6px 0 0;
  color: #6f7890;
  font-size: 13px;
  line-height: 1.7;
}

.punishment-status-timer {
  min-width: 156px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff5df;
  color: #9e5b10;
  text-align: center;
  font-weight: 800;
}

.punishment-status-timer.is-permanent {
  background: #ffe7e7;
  color: #b33131;
}

.news-page-side {
  border-left: 1px solid #d8dce4;
  padding-left: 18px;
}

.news-page-side-title {
  margin: 0 0 12px;
  color: #33415f;
  font-size: 14px;
  font-weight: 800;
}

.news-page-list {
  display: grid;
  gap: 10px;
}

.news-page-link {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid #d8dce4;
  background: #ffffff;
  color: #3f4b69;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease;
}

.news-page-link:hover,
.news-page-link:focus-visible,
.news-page-link.is-active {
  color: var(--accent);
  border-color: rgba(242, 162, 51, 0.5);
  box-shadow: 0 12px 24px rgba(17, 20, 31, 0.08);
  transform: translateY(-1px);
}

.news-page-link-title {
  font-size: 12px;
  font-weight: 700;
}

.news-page-link-date {
  font-size: 10px;
  color: #8a91a2;
}

@media (max-width: 860px) {
  .news-page-layout {
    grid-template-columns: 1fr;
  }

  .news-page-main {
    padding-right: 0;
  }

  .news-page-side {
    margin-top: 18px;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid #d8dce4;
  }

  .punishment-status-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .punishment-status-toggle,
  .punishment-status-timer {
    width: 100%;
  }

  .punishment-status-card {
    grid-template-columns: 1fr;
  }
}
