.page-news {
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 55%, #0F5A42 100%);
  color: #FAF7F0;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.22), transparent 36%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--gold-gradient);
  transform: skewX(-45deg);
  transform-origin: left bottom;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 240, 0.72);
}

.page-news .breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  border-bottom-color: var(--accent-light);
  color: #fff;
}

.page-news .news-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  color: var(--accent-light);
}

.page-news .news-hero__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.page-news .news-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #fff;
}

.page-news .news-hero__desc {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1rem;
  color: rgba(250, 247, 240, 0.84);
}

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

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 11px 22px;
  border: 1px solid transparent;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-deep);
}

.page-news .btn--primary:hover,
.page-news .btn--primary:focus-visible {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.page-news .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.page-news .btn--ghost:hover,
.page-news .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.page-news .btn--outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.page-news .btn--outline:hover,
.page-news .btn--outline:focus-visible {
  background: var(--primary);
  color: #fff;
}

.page-news .data-stat--light {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.page-news .data-stat--light::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--accent);
}

.page-news .data-stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-light);
}

.page-news .data-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-news .news-toolbar {
  padding: 28px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.page-news .news-toolbar__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-news .news-toolbar__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.page-news .news-toolbar__label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.page-news .news-toolbar__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 12px;
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news .news-toolbar__field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.page-news .news-toolbar__input {
  min-width: 0;
  padding: 13px 16px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.page-news .news-toolbar__btn {
  border-radius: 0;
}

.page-news .news-toolbar__hint {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: rgba(26, 26, 26, 0.66);
}

.page-news .news-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-toolbar__filter {
  padding: 8px 16px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-toolbar__filter:hover,
.page-news .news-toolbar__filter:focus-visible {
  background: var(--primary);
  color: #fff;
}

.page-news .news-toolbar__filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-deep);
}

.page-news .news-layout {
  padding: 56px 0;
  background: var(--soft);
}

.page-news .news-layout__grid {
  display: grid;
  gap: 40px;
}

.page-news .news-filter {
  padding: 24px 20px;
  background: var(--cream);
  border: 1px solid rgba(11, 61, 46, 0.15);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.page-news .news-filter__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.page-news .news-filter__intro {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.72);
}

.page-news .news-filter__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0;
  padding: 11px 12px;
  border-left: 3px solid transparent;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news .news-filter__link:hover,
.page-news .news-filter__link:focus-visible {
  border-left-color: var(--accent);
  background: rgba(201, 162, 39, 0.08);
}

.page-news .news-filter__link span {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
}

.page-news .news-filter__card {
  margin-top: 24px;
  padding: 18px 16px;
  background: linear-gradient(135deg, #0B3D2E, #07281E);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.page-news .news-filter__card-title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--accent-light);
}

.page-news .news-filter__card-text {
  margin: 0 0 10px;
}

.page-news .news-filter__card-link {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 214, 117, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.page-news .news-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.page-news .news-list__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
}

.page-news .news-list__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
}

.page-news .news-list__group {
  scroll-margin-top: 90px;
  padding: 30px 0 6px;
}

.page-news .news-list__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.page-news .news-list__group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.65), transparent);
}

.page-news .news-list__group:target {
  animation: pageNewsFlash 1.1s ease;
}

@keyframes pageNewsFlash {
  0%,
  100% {
    background-color: transparent;
  }
  40% {
    background-color: rgba(201, 162, 39, 0.12);
  }
}

.page-news .news-feature {
  display: grid;
  gap: 24px;
  margin-top: 8px;
  padding: 18px;
  background: var(--cream);
  border: 1px solid rgba(11, 61, 46, 0.15);
  box-shadow: var(--shadow-md);
  scroll-margin-top: 90px;
}

.page-news .news-feature__media {
  overflow: hidden;
  background: var(--primary-deep);
}

.page-news .news-feature__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.page-news .news-feature:hover .news-feature__img {
  transform: scale(1.02);
}

.page-news .news-feature__title {
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--primary);
}

.page-news .news-feature__summary {
  margin: 10px 0 18px;
  color: rgba(26, 26, 26, 0.8);
}

.page-news .news-item {
  margin-top: 16px;
  padding: 20px 18px;
  background: var(--cream);
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-left: 4px solid var(--soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  scroll-margin-top: 90px;
}

.page-news .news-item:hover,
.page-news .news-item:focus-within {
  border-color: rgba(201, 162, 39, 0.6);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.page-news .news-item__time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.6);
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.page-news .tag--gold {
  background: rgba(201, 162, 39, 0.14);
  border-color: rgba(201, 162, 39, 0.45);
  color: #8A6D13;
}

.page-news .tag--success {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.4);
  color: var(--success);
}

.page-news .tag--alert {
  background: rgba(210, 35, 42, 0.12);
  border-color: rgba(210, 35, 42, 0.42);
  color: var(--alert);
}

.page-news .news-item__title {
  margin: 12px 0 0;
  font-family: var(--font-title);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--primary);
}

.page-news .news-item__title a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-news .news-item__title a:hover,
.page-news .news-item__title a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.page-news .news-item__summary {
  margin: 10px 0 0;
  max-height: 200px;
  opacity: 1;
  color: rgba(26, 26, 26, 0.74);
  font-size: 0.95rem;
}

.page-news .news-topic {
  display: grid;
  gap: 20px;
  margin-top: 16px;
  padding: 18px;
  background: var(--cream);
  border: 1px solid rgba(11, 61, 46, 0.15);
  scroll-margin-top: 90px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-topic:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.page-news .news-topic__media {
  overflow: hidden;
  background: var(--primary-deep);
}

.page-news .news-topic__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-topic__title {
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--primary);
}

.page-news .news-topic__summary {
  margin: 10px 0 14px;
  color: rgba(26, 26, 26, 0.76);
}

.page-news .news-topic__link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-news .news-topic__link:hover,
.page-news .news-topic__link:focus-visible {
  background: var(--primary);
  color: #fff;
  border-bottom-color: var(--primary);
}

.page-news .news-expert-block {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
  padding: 56px 0;
  background: linear-gradient(135deg, #07281E 0%, #0B3D2E 60%, #0F4A36 100%);
  color: #fff;
}

.page-news .news-expert-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.page-news .news-expert-block__inner {
  display: grid;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.page-news .news-expert-block__title {
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: 2.2rem;
  line-height: 1.1;
  color: #fff;
}

.page-news .news-expert-block__desc {
  max-width: 46ch;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.page-news .news-expert-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-expert-block__portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.page-news .news-expert-block__img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.12);
}

.page-news .news-expert-block__caption {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-light);
}

.page-news .news-expert-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-news .news-expert-block__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-news .news-expert-block__list li span {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--accent-light);
}

.page-news .news-more {
  scroll-margin-top: 80px;
  padding: 56px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.page-news .news-more__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.page-news .news-more__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  color: #fff;
}

.page-news .news-more__desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-more__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-more__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.page-news .news-more__item:hover,
.page-news .news-more__item:focus-within {
  padding-left: 10px;
  background: rgba(11, 61, 46, 0.65);
}

.page-news .news-more__index {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent);
}

.page-news .news-more__item-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}

.page-news .news-more__item-title a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-news .news-more__item-title a:hover,
.page-news .news-more__item-title a:focus-visible {
  border-bottom-color: var(--accent);
}

.page-news .news-more__meta {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
}

.page-news .news-more__arrow {
  color: var(--accent);
  font-size: 1.2rem;
}

.page-news .news-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 24px;
}

.page-news .news-pagination__info {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--accent);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-pagination__arrow:hover,
.page-news .news-pagination__arrow:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary-deep);
}

.page-news .news-cta {
  padding: 56px 0;
  background: var(--gold-gradient);
}

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

.page-news .news-cta__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--primary-deep);
}

.page-news .news-cta__desc {
  max-width: 52ch;
  margin: 14px 0 26px;
  color: rgba(26, 26, 26, 0.78);
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-cta .btn--primary {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #fff;
}

.page-news .news-cta .btn--primary:hover,
.page-news .news-cta .btn--primary:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
}

.page-news .news-cta .btn--outline {
  border-color: var(--primary-deep);
  color: var(--primary-deep);
}

.page-news .news-cta .btn--outline:hover,
.page-news .news-cta .btn--outline:focus-visible {
  background: var(--primary-deep);
  color: #fff;
}

.page-news .news-cta .btn--ghost {
  border-color: rgba(11, 61, 46, 0.6);
  color: var(--primary-deep);
}

.page-news .news-cta .btn--ghost:hover,
.page-news .news-cta .btn--ghost:focus-visible {
  background: rgba(11, 61, 46, 0.1);
  border-color: var(--primary-deep);
}

.page-news .news-cta__aside {
  padding: 16px 18px;
  background: rgba(11, 61, 46, 0.08);
  border-left: 4px solid var(--primary);
}

.page-news .news-cta__aside-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.page-news .news-cta__aside-text {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.75);
}

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

  .page-news .news-toolbar__search {
    flex: 1;
  }

  .page-news .news-toolbar__filters {
    flex: 0 0 auto;
    max-width: 560px;
    justify-content: flex-end;
  }

  .page-news .news-toolbar__hint {
    max-width: 58ch;
  }

  .page-news .news-toolbar__field {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 900px) {
  .page-news .news-feature {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    padding: 22px;
  }

  .page-news .news-topic {
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
  }

  .page-news .news-topic--reverse .news-topic__media {
    order: 2;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero {
    padding: 72px 0 64px;
  }

  .page-news .news-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
    gap: 64px;
    align-items: end;
  }

  .page-news .news-hero__stats {
    margin-top: 0;
  }

  .page-news .news-layout__grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  .page-news .news-filter {
    position: sticky;
    top: 96px;
  }

  .page-news .news-expert-block__inner {
    grid-template-columns: minmax(0, 1.3fr) 220px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }

  .page-news .news-cta__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr);
    gap: 64px;
    align-items: center;
  }
}

@media (min-width: 961px) {
  .page-news .news-item__summary {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, transform 0.3s ease;
  }

  .page-news .news-item:hover .news-item__summary,
  .page-news .news-item:focus-within .news-item__summary {
    max-height: 200px;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }
}
