:root {
  --news-bg: #f4f7fb;
  --news-card: #ffffff;
  --news-card-soft: #f8fbff;
  --news-ink: #08233f;
  --news-ink-soft: #183b63;
  --news-muted: #65758b;
  --news-border: rgba(24, 59, 99, 0.12);
  --news-blue: #052f61;
  --news-blue-deep: #021e40;
  --news-gold: #e7a51b;
  --news-shadow: 0 24px 70px rgba(8, 35, 63, 0.12);
  --news-shadow-soft: 0 14px 36px rgba(8, 35, 63, 0.075);
  --news-radius-xl: 34px;
  --news-radius-lg: 26px;
  --news-radius-md: 18px;
}

body {
  background: var(--news-bg);
}

.news-page {
  position: relative;
  overflow: hidden;
  padding: 28px 0 78px;
  color: var(--news-ink);
}

.news-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(5, 47, 97, 0.14), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(231, 165, 27, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0));
}

.news-container {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.news-mobile {
  display: none;
}

.news-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 2.6vw, 34px);
  margin-bottom: 30px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--news-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 253, 0.88)),
    radial-gradient(circle at 92% 18%, rgba(231, 165, 27, 0.12), transparent 28%);
  box-shadow: 0 24px 80px rgba(28, 65, 112, 0.09);
}

.news-hero::before {
  content: "";
  position: absolute;
  left: -76px;
  top: -86px;
  width: 184px;
  height: 184px;
  border-radius: 0 0 92px 0;
  background: linear-gradient(135deg, var(--news-blue-deep), var(--news-blue));
}

.news-hero::after {
  content: "";
  position: absolute;
  left: 102px;
  top: 42px;
  width: 150px;
  height: 86px;
  opacity: 0.28;
  background-image: radial-gradient(rgba(5, 47, 97, 0.24) 1.1px, transparent 1.1px);
  background-size: 12px 12px;
}

.news-hero__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(280px, 560px);
  align-items: end;
  justify-content: space-between;
  gap: 18px 34px;
  max-width: none;
  padding-left: clamp(0px, 4vw, 40px);
}

.news-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid rgba(5, 47, 97, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--news-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0;
  color: var(--news-blue-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 4.7vw, 4.85rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.news-hero p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--news-ink-soft);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.7;
}

.news-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(24, 59, 99, 0.12);
  border-radius: var(--news-radius-lg);
  background: var(--news-card);
  color: var(--news-ink);
  text-decoration: none;
  box-shadow: var(--news-shadow);
  isolation: isolate;
}

.news-feature__media,
.news-card__media,
.news-mobile-feature__media,
.news-mobile-card__media,
.news-feed-card__media {
  position: relative;
  overflow: hidden;
  background: #dfe9f6;
  isolation: isolate;
}

.news-feature__media img,
.news-card__media img,
.news-feed-card__media img,
.news-mobile-feature__media img,
.news-mobile-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-feature__media {
  width: 520px;
  height: 450px;
}

.news-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 42px clamp(44px, 5vw, 78px) 40px clamp(42px, 4.5vw, 68px);
}


.news-feature h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--news-blue-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.62rem, 2.45vw, 2.36rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.news-feature p {
  max-width: 720px;
  margin: 0;
  color: var(--news-muted);
  font-size: 0.99rem;
  line-height: 1.62;
}

.news-feature__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 26px;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--news-blue);
  font-size: 0.94rem;
  font-weight: 900;
}

.news-read-link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.22s ease;
}

.news-feature__footer time {
  color: var(--news-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-showcase {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 42px;
}

.news-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-lg);
  background: var(--news-card);
  color: var(--news-ink);
  text-decoration: none;
  box-shadow: var(--news-shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-card--lead .news-card__media {
  width: 520px;
  height: 410px;
}

.news-card--lead .news-card__body {
  padding: 24px 28px 30px;
}

.news-card__body {
  padding: 24px 26px 28px;
}

.news-card time,
.news-feed-card__time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--news-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.news-card h2,
.news-card h3,
.news-feed-card h3 {
  margin: 0;
  color: var(--news-blue-deep);
  letter-spacing: -0.025em;
}

.news-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.38rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.news-card h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.news-card p,
.news-feed-card p {
  margin: 0;
  color: var(--news-muted);
  line-height: 1.58;
}

.news-card--lead p {
  font-size: 1rem;
}

.news-compact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-card--compact {
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: center;
  min-height: 132px;
  padding: 11px;
  border-radius: 20px;
}

.news-card--compact .news-card__media {
  width: 148px;
  height: 108px;
  border-radius: 15px;
}

.news-card--compact .news-card__media::before,
.news-card--compact .news-card__media::after {
  display: none;
}

.news-card--compact .news-card__body {
  min-width: 0;
  padding: 0 10px 0 8px;
}

.news-card--compact p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-feed {
  position: relative;
  margin-top: 12px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--news-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 253, 0.88)),
    radial-gradient(circle at 8% 0%, rgba(5, 47, 97, 0.08), transparent 28%);
  box-shadow: var(--news-shadow-soft);
}

.news-feed__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.news-feed__head h2 {
  margin: 0;
  color: var(--news-blue-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.news-feed__head p {
  max-width: 560px;
  margin: 0;
  color: var(--news-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  text-align: right;
}

.news-feed__list {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 59, 99, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(8, 35, 63, 0.075);
}

.news-feed__list::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 34px;
  bottom: 34px;
  z-index: 1;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0b72f0 0%, #0b72f0 68%, rgba(11, 114, 240, 0.34) 100%);
  box-shadow: 0 0 0 8px rgba(11, 114, 240, 0.05);
}

.news-feed-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 82px 124px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 16px 20px 16px 94px;
  border-bottom: 1px solid rgba(24, 59, 99, 0.1);
  color: var(--news-ink);
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.news-feed-card::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 7px solid #eaf3ff;
  border-radius: 50%;
  background: #0b72f0;
  box-shadow: 0 10px 22px rgba(11, 114, 240, 0.26);
  transform: translateY(-50%);
}

.news-feed-card:last-child {
  border-bottom: 0;
}

.news-feed-card__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 74px;
  padding-left: 2px;
}

.news-feed-card__date strong {
  display: block;
  color: var(--news-blue);
  font-size: 2.05rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.news-feed-card__date span {
  margin-top: 4px;
  color: var(--news-muted);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.news-feed-card__time {
  display: none;
}

.news-feed-card__media {
  width: 124px;
  height: 78px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.1);
}

.news-feed-card__body {
  min-width: 0;
}

.news-feed-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 7px;
  color: var(--news-blue-deep);
  font-size: 1.1rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news-feed-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--news-muted);
  font-size: 0.92rem;
  line-height: 1.46;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news-feed-card__views {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--news-muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.news-feed-card__views svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-state {
  width: min(760px, 100%);
  margin: 56px auto;
  padding: 74px 28px;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-xl);
  background: var(--news-card);
  text-align: center;
  box-shadow: var(--news-shadow-soft);
}

.empty-icon {
  margin-bottom: 18px;
  font-size: 3.4rem;
}

.empty-text {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--news-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--news-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}


@media (max-width: 1100px) and (min-width: 861px) {
  .news-hero__intro {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .news-hero p {
    max-width: 720px;
  }

  .news-feature,
  .news-card--lead {
    grid-template-columns: 460px minmax(0, 1fr);
  }

  .news-feature__media,
  .news-card--lead .news-card__media {
    width: 460px;
    height: 398px;
  }

  .news-feature__body {
    padding: 34px 36px;
  }
}

@media (hover: hover) {
  .news-feature__media img,
  .news-card__media img,
  .news-feed-card__media img,
  .news-mobile-feature__media img,
  .news-mobile-card__media img {
    transition: transform 0.56s ease;
  }

  .news-feature:hover,
  .news-card:hover,
  .news-mobile-feature:hover,
  .news-mobile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(5, 47, 97, 0.2);
    box-shadow: 0 26px 68px rgba(8, 35, 63, 0.14);
  }

  .news-feed-card:hover {
    z-index: 4;
    background: #f8fbff;
    box-shadow: inset 5px 0 0 rgba(11, 114, 240, 0.18);
  }

  .news-feature:hover .news-feature__media img,
  .news-card:hover .news-card__media img,
  .news-feed-card:hover .news-feed-card__media img,
  .news-mobile-feature:hover .news-mobile-feature__media img,
  .news-mobile-card:hover .news-mobile-card__media img {
    transform: scale(1.055);
  }

  .news-feature:hover .news-read-link::after {
    transform: translateX(4px);
  }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .news-hero,
  .news-showcase {
    grid-template-columns: 1fr;
  }

  .news-feature {
    grid-template-columns: 520px minmax(0, 1fr);
    width: 100%;
  }

  .news-card--lead {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    align-items: stretch;
  }
}

@media (max-width: 860px) {
  .news-page {
    padding: 0 0 58px;
    background:
      radial-gradient(circle at 14% 1%, rgba(5, 47, 97, 0.12), transparent 30%),
      linear-gradient(180deg, #eef5ff 0%, #f8fafc 40%, #f4f7fb 100%);
  }

  .news-page::before {
    height: 260px;
    opacity: 0.75;
  }

  .news-container {
    width: min(100% - 22px, 620px);
  }

  .news-desktop {
    display: none;
  }

  .news-mobile {
    display: block;
    padding-top: 12px;
  }

  .news-mobile-hero {
    position: relative;
    margin: 0 0 14px;
    padding: 22px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 0 0 28px 28px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 242, 253, 0.86)),
      radial-gradient(circle at 92% 10%, rgba(231, 165, 27, 0.18), transparent 34%);
    box-shadow: 0 18px 42px rgba(8, 35, 63, 0.08);
  }

  .news-mobile-hero::before {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -62px;
    width: 152px;
    height: 152px;
    border: 2px solid rgba(231, 165, 27, 0.26);
    border-radius: 48px;
    transform: rotate(18deg);
  }

  .news-mobile-hero__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .news-mobile-hero__top span,
  .news-mobile-hero__top strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(5, 47, 97, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--news-blue);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .news-mobile-hero__top strong {
    color: #9b6a07;
  }

  .news-mobile-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--news-blue-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 12vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .news-mobile-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--news-ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .news-mobile-feature {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(24, 59, 99, 0.11);
    border-radius: 30px;
    background: #fff;
    color: var(--news-ink);
    text-decoration: none;
    box-shadow: 0 18px 52px rgba(8, 35, 63, 0.12);
  }

  .news-mobile-feature__media {
    width: 100%;
    aspect-ratio: 520 / 450;
    min-height: 245px;
    max-height: 430px;
  }

  .news-mobile-feature__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 22%,
      rgba(255, 255, 255, 0.10) 38%,
      rgba(255, 255, 255, 0.28) 52%,
      rgba(255, 255, 255, 0.55) 68%,
      rgba(248, 250, 253, 0.86) 84%,
      #ffffff 100%
    );
  }

  .news-mobile-feature__media::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -20px;
    z-index: 3;
    height: 36%;
    pointer-events: none;
    background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.64) 44%, rgba(255, 255, 255, 0) 76%);
    filter: blur(12px);
  }

  .news-mobile-feature__body {
    position: relative;
    z-index: 4;
    margin-top: -72px;
    padding: 0 18px 20px;
  }

  .news-mobile-feature__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .news-mobile-feature__meta span,
  .news-mobile-feature__meta time {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--news-blue);
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(8, 35, 63, 0.08);
  }

  .news-mobile-feature__meta time {
    color: var(--news-muted);
  }

  .news-mobile-feature h2 {
    margin: 0 0 10px;
    color: var(--news-blue-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  .news-mobile-feature p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--news-muted);
    font-size: 0.98rem;
    line-height: 1.56;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .news-mobile-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    margin-top: 16px;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--news-blue);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .news-mobile-open::after {
    content: "→";
  }

  .news-mobile-stream {
    position: relative;
    margin-top: 6px;
    padding: 16px 12px 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 252, 0.84));
    box-shadow: 0 16px 42px rgba(8, 35, 63, 0.07);
  }

  .news-mobile-stream__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0 2px;
  }

  .news-mobile-stream__head h2 {
    margin: 0;
    color: var(--news-blue-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.54rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .news-mobile-stream__head span {
    display: none;
  }

  .news-mobile-list {
    display: grid;
    gap: 10px;
    padding-left: 0;
  }

  .news-mobile-list::before {
    content: none;
  }

  .news-mobile-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr);
    align-items: center;
    gap: 0;
    min-height: 98px;
    overflow: hidden;
    border: 1px solid rgba(24, 59, 99, 0.09);
    border-radius: 18px;
    background: #fff;
    color: var(--news-ink);
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(8, 35, 63, 0.055);
  }

  .news-mobile-card::before {
    content: none;
  }

  .news-mobile-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    align-self: stretch;
    padding: 10px 6px;
    border-right: 1px solid rgba(24, 59, 99, 0.08);
    color: var(--news-blue-deep);
    text-align: center;
  }

  .news-mobile-card__date strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .news-mobile-card__date span {
    display: block;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 800;
    color: #5b7090;
    text-transform: lowercase;
  }

  .news-mobile-card__media {
    min-height: 98px;
    border-radius: 0;
  }

  .news-mobile-card__body {
    min-width: 0;
    padding: 10px 12px 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .news-mobile-card__number {
    display: none;
  }

  .news-mobile-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 6px;
    color: var(--news-blue-deep);
    font-size: 0.98rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-mobile-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--news-muted);
    font-size: 0.82rem;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-mobile-card__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 7px;
    color: var(--news-muted);
    font-size: 0.74rem;
    font-weight: 800;
  }

  .news-mobile-card__bottom time {
    color: #5a6f8e;
    font-weight: 900;
  }

  .news-mobile-card__bottom span {
    display: none;
  }
}

@media (max-width: 430px) {
  .news-container {
    width: calc(100% - 18px);
  }

  .news-mobile-hero {
    padding: 20px 16px 16px;
  }

  .news-mobile-hero__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .news-mobile-feature {
    border-radius: 26px;
  }

  .news-mobile-feature__media {
    min-height: 220px;
  }

  .news-mobile-feature__body {
    margin-top: -62px;
    padding: 0 16px 18px;
  }

  .news-mobile-stream {
    padding: 14px 10px 10px;
    border-radius: 22px;
  }

  .news-mobile-list {
    gap: 9px;
    padding-left: 0;
  }

  .news-mobile-card {
    grid-template-columns: 52px 82px minmax(0, 1fr);
    min-height: 90px;
    border-radius: 16px;
  }

  .news-mobile-card__date {
    padding: 8px 4px;
  }

  .news-mobile-card__date strong {
    font-size: 1.06rem;
  }

  .news-mobile-card__date span {
    font-size: 0.71rem;
  }

  .news-mobile-card__media {
    min-height: 90px;
    border-radius: 0;
  }

  .news-mobile-card__body {
    padding: 9px 10px 9px 11px;
  }

  .news-mobile-card h3 {
    font-size: 0.94rem;
  }

  .news-mobile-card p {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }

  .news-mobile-card__bottom {
    margin-top: 6px;
    font-size: 0.7rem;
  }
}

/* Desktop hero refined variant: compact, practical, without unused empty space */
.news-hero {
  gap: clamp(26px, 2.4vw, 34px);
  margin-bottom: 32px;
  padding: clamp(34px, 3.4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    radial-gradient(circle at 82% 8%, rgba(231, 165, 27, 0.09), transparent 28%);
}

.news-hero::before,
.news-hero::after {
  display: none;
}

.news-hero__intro {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-left: 0;
}

.news-hero__text {
  min-width: 0;
  max-width: 860px;
}

.news-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.88;
}

.news-hero__text p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.65;
}

.news-hero__all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 24px 0 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(5, 47, 97, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--news-blue-deep);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(8, 35, 63, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.news-hero__all-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.news-feature {
  grid-template-columns: 520px minmax(0, 1fr);
  min-height: 450px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(8, 35, 63, 0.1);
}

.news-feature__body {
  padding: clamp(42px, 4.2vw, 66px) clamp(48px, 5vw, 78px);
  justify-content: center;
}

.news-feature__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 16px;
  border-radius: 12px;
  background: #eef4fb;
  color: var(--news-blue);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.news-feature__tag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--news-blue);
}

.news-feature h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 1.04;
}

.news-feature p {
  max-width: 800px;
  color: #354a66;
  font-size: clamp(1rem, 1.16vw, 1.15rem);
  line-height: 1.7;
}

.news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 59, 99, 0.15);
  color: var(--news-muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.news-feature__meta time,
.news-feature__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-feature__meta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-feature__footer {
  margin-top: 28px;
}

.news-read-link {
  min-height: 56px;
  padding: 0 30px 0 32px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--news-blue), var(--news-blue-deep));
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(5, 47, 97, 0.18);
}



@media (min-width: 861px) {
  .news-feature__media {
    border-bottom-right-radius: 72px;
  }

  .news-feature__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 62%,
        rgba(255, 255, 255, 0.14) 74%,
        rgba(255, 255, 255, 0.38) 84%,
        rgba(255, 255, 255, 0.72) 92%,
        rgba(255, 255, 255, 0.96) 98%,
        #ffffff 100%),
      linear-gradient(to right,
        rgba(255, 255, 255, 0) 76%,
        rgba(255, 255, 255, 0.16) 86%,
        rgba(255, 255, 255, 0.58) 94%,
        rgba(255, 255, 255, 0.92) 100%);
  }

  .news-feature__media::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 146px;
    height: 152px;
    z-index: 2;
    filter: blur(25px);
    pointer-events: none;
    background: radial-gradient(circle at bottom right,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.3) 68%,
      rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 860px) {
  .news-feature__media {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .news-feature__media::before,
  .news-feature__media::after {
    content: none;
  }
}

@media (hover: hover) {
  .news-hero__all-link:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 47, 97, 0.52);
    background: #fff;
    box-shadow: 0 18px 42px rgba(8, 35, 63, 0.1);
  }

  .news-hero__all-link:hover svg {
    transform: translateX(4px);
  }
}

@media (max-width: 860px) {
  .news-mobile-stream {
    margin-top: 6px;
    padding: 14px 10px 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 252, 0.88));
  }

  .news-mobile .news-feed__list {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(24, 59, 99, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
  }

  .news-mobile .news-feed__list::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 22px;
    bottom: 22px;
    z-index: 1;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0b72f0 0%, #0b72f0 70%, rgba(11, 114, 240, 0.32) 100%);
    box-shadow: 0 0 0 7px rgba(11, 114, 240, 0.045);
  }

  .news-mobile .news-feed-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 52px 108px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 10px;
    min-height: 104px;
    padding: 13px 10px 13px 52px;
    border: 0;
    border-bottom: 1px solid rgba(24, 59, 99, 0.1);
    border-radius: 0;
    background: transparent;
    color: var(--news-ink);
    text-decoration: none;
    box-shadow: none;
  }

  .news-mobile .news-feed-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    z-index: 3;
    width: 26px;
    height: 26px;
    border: 6px solid #eaf3ff;
    border-radius: 50%;
    background: #0b72f0;
    box-shadow: 0 8px 18px rgba(11, 114, 240, 0.24);
    transform: translateY(-50%);
  }

  .news-mobile .news-feed-card:last-child {
    border-bottom: 0;
  }

  .news-mobile .news-feed-card__date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    min-height: 64px;
    padding: 0;
    color: var(--news-blue-deep);
  }

  .news-mobile .news-feed-card__date strong {
    color: var(--news-blue-deep);
    font-size: 1.42rem;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
  }

  .news-mobile .news-feed-card__date span {
    margin-top: 4px;
    color: #5d7190;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: lowercase;
  }

  .news-mobile .news-feed-card__media {
    width: 108px;
    height: 72px;
    min-height: 0;
    overflow: hidden;
    border-radius: 13px;
    background: #dfe9f6;
    box-shadow: 0 8px 18px rgba(8, 35, 63, 0.08);
  }

  .news-mobile .news-feed-card__media::before,
  .news-mobile .news-feed-card__media::after {
    content: none;
  }

  .news-mobile .news-feed-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .news-mobile .news-feed-card__body {
    min-width: 0;
  }

  .news-mobile .news-feed-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 5px;
    color: var(--news-blue-deep);
    font-size: 0.93rem;
    line-height: 1.17;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-mobile .news-feed-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--news-muted);
    font-size: 0.78rem;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .news-mobile .news-feed-card__views {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--news-muted);
    font-size: 0.76rem;
    font-weight: 900;
  }

  .news-mobile .news-feed-card__views svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 430px) {
  .news-mobile .news-feed-card {
    grid-template-columns: 46px 96px minmax(0, 1fr) 34px;
    gap: 8px;
    min-height: 96px;
    padding: 12px 8px 12px 48px;
  }

  .news-mobile .news-feed__list::before {
    left: 21px;
  }

  .news-mobile .news-feed-card::before {
    left: 10px;
    width: 24px;
    height: 24px;
    border-width: 5px;
  }

  .news-mobile .news-feed-card__date strong {
    font-size: 1.24rem;
  }

  .news-mobile .news-feed-card__date span {
    font-size: 0.68rem;
  }

  .news-mobile .news-feed-card__media {
    width: 96px;
    height: 64px;
    border-radius: 12px;
  }

  .news-mobile .news-feed-card h3 {
    font-size: 0.88rem;
    line-height: 1.16;
  }

  .news-mobile .news-feed-card p {
    font-size: 0.74rem;
  }

  .news-mobile .news-feed-card__views {
    font-size: 0.68rem;
  }

  .news-mobile .news-feed-card__views svg {
    width: 14px;
    height: 14px;
  }
}

/* Mobile feed final layout: meta below, more room for news content */
@media (max-width: 860px) {
  .news-mobile .news-feed-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) auto;
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "media body body"
      "media date views";
    align-items: center;
    gap: 8px 12px;
    min-height: 112px;
    padding: 13px 12px 13px 52px;
  }

  .news-mobile .news-feed-card__media {
    grid-area: media;
    width: 118px;
    height: 80px;
    min-height: 0;
    border-radius: 13px;
  }

  .news-mobile .news-feed-card__body {
    grid-area: body;
    min-width: 0;
    align-self: end;
  }

  .news-mobile .news-feed-card__date {
    grid-area: date;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    color: #5d7190;
    white-space: nowrap;
  }

  .news-mobile .news-feed-card__date strong {
    color: #5d7190;
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.025em;
  }

  .news-mobile .news-feed-card__date span {
    margin-top: 0;
    color: #5d7190;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: lowercase;
  }

  .news-mobile .news-feed-card__views {
    grid-area: views;
    justify-self: end;
    align-self: center;
    min-width: max-content;
    font-size: 0.76rem;
  }

  .news-mobile .news-feed-card h3 {
    font-size: 0.98rem;
    line-height: 1.18;
    -webkit-line-clamp: 2;
  }

  .news-mobile .news-feed-card p {
    font-size: 0.8rem;
    line-height: 1.34;
    -webkit-line-clamp: 1;
  }
}

@media (max-width: 430px) {
  .news-mobile .news-feed-card {
    grid-template-columns: 98px minmax(0, 1fr) auto;
    min-height: 102px;
    gap: 7px 10px;
    padding: 12px 9px 12px 48px;
  }

  .news-mobile .news-feed-card__media {
    width: 98px;
    height: 68px;
    border-radius: 12px;
  }

  .news-mobile .news-feed-card__date strong {
    font-size: 0.78rem;
  }

  .news-mobile .news-feed-card__date span {
    font-size: 0.68rem;
  }

  .news-mobile .news-feed-card h3 {
    font-size: 0.91rem;
    line-height: 1.16;
  }

  .news-mobile .news-feed-card p {
    font-size: 0.74rem;
  }

  .news-mobile .news-feed-card__views {
    font-size: 0.68rem;
  }
}
