.NewsPage {
  background: radial-gradient(circle at top left, rgba(0, 211, 219, 0.08), transparent 30%), linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.NewsWrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.NewsHeroCard,
.NewsArticleCard,
.NewsSidebar,
.NewsListCard,
.NewsEmptyCard {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.98));
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.NewsHeroCard {
  margin-top: 16px;
  padding: 28px;
}

.NewsEyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f766e;
}

.NewsTitle {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: #0f172a;
  text-wrap: balance;
}

.NewsExcerpt {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: #334155;
}

.NewsPublishedAt {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.NewsDetailLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.NewsArticleCard {
  padding: 24px;
  min-width: 0;
}

.NewsCoverImage {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

.NewsContent {
  color: #1e293b;
}
.NewsContent p {
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 1rem;
}
.NewsContent p:last-child {
  margin-bottom: 0;
}

.NewsSidebar {
  padding: 24px;
  min-width: 0;
  position: sticky;
  top: 16px;
}

.NewsSidebarTitle {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #0f172a;
}

.NewsSidebarList {
  display: grid;
  gap: 16px;
}

.NewsSidebarItem {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 16px;
}

.NewsSidebarItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.NewsSidebarItemTitle {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}

.NewsSidebarItemDate {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.9rem;
}

.NewsSidebarItemExcerpt {
  display: block;
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
}

.NewsList {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.NewsListCard,
.NewsEmptyCard {
  padding: 24px;
}

.NewsListDate {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.95rem;
}

.NewsListTitle {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.NewsListTitleLink {
  color: inherit;
  text-decoration: none;
}

.NewsListExcerpt {
  margin: 0 0 16px;
  line-height: 1.7;
  color: #334155;
}

.NewsReadMore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #028489, #046a72);
  box-shadow: 0 12px 26px rgba(2, 132, 137, 0.22);
}

.NewsEmptyText {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .NewsWrapper {
    padding: 28px 18px 56px;
  }
  .NewsDetailLayout {
    grid-template-columns: 1fr;
  }
  .NewsSidebar {
    position: static;
  }
}
@media (max-width: 560px) {
  .NewsWrapper {
    padding: 20px 12px 40px;
  }
  .NewsHeroCard,
  .NewsArticleCard,
  .NewsSidebar,
  .NewsListCard,
  .NewsEmptyCard {
    border-radius: 18px;
  }
  .NewsHeroCard {
    margin-top: 12px;
    padding: 18px 16px;
  }
  .NewsEyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .NewsTitle {
    margin: 10px 0 12px;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    line-height: 1.12;
  }
  .NewsExcerpt {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .NewsPublishedAt {
    margin-top: 12px;
    font-size: 0.88rem;
  }
  .NewsDetailLayout,
  .NewsList {
    gap: 14px;
    margin-top: 14px;
  }
  .NewsArticleCard,
  .NewsSidebar,
  .NewsListCard,
  .NewsEmptyCard {
    padding: 16px;
  }
  .NewsCoverImage {
    margin-bottom: 16px;
    border-radius: 14px;
    max-height: 260px;
  }
  .NewsContent p,
  .NewsListExcerpt,
  .NewsSidebarItemExcerpt,
  .NewsEmptyText {
    font-size: 0.94rem;
    line-height: 1.6;
  }
  .NewsSidebarTitle {
    margin-bottom: 12px;
    font-size: 1.12rem;
  }
  .NewsSidebarList {
    gap: 12px;
  }
  .NewsSidebarItem {
    padding-bottom: 12px;
  }
  .NewsSidebarItemTitle {
    margin-bottom: 6px;
    font-size: 0.98rem;
  }
  .NewsSidebarItemDate,
  .NewsListDate {
    font-size: 0.84rem;
  }
  .NewsListTitle {
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
  .NewsReadMore {
    width: 100%;
    min-height: 44px;
    padding: 0.72rem 1rem;
  }
}