.news-page {
  min-height: 70vh;
  background: var(--white);
}

.news-page-header {
  position: relative;
  overflow: hidden;
  padding: 55px 0 45px;
  text-align: center;
  background:
    radial-gradient(
      circle at 8% 25%,
      rgba(20, 184, 176, 0.14) 0 80px,
      transparent 81px
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(142, 228, 220, 0.2) 0 110px,
      transparent 111px
    ),
    radial-gradient(
      circle at 78% 10%,
      rgba(20, 184, 176, 0.07) 0 45px,
      transparent 46px
    ),
    var(--mint-soft);
}

.news-page-header::before,
.news-page-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.news-page-header::before {
  width: 170px;
  height: 170px;
  left: -70px;
  bottom: -95px;
  background: rgba(20, 184, 176, 0.08);
}

.news-page-header::after {
  width: 95px;
  height: 95px;
  right: 7%;
  top: -45px;
  background: rgba(142, 228, 220, 0.16);
}

.news-page-header h2 {
  position: relative;
  z-index: 1;
  margin: 8px 0 12px;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.news-page-header p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.news-list-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 75px;
  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(20, 184, 176, 0.08) 0 90px,
      transparent 91px
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(142, 228, 220, 0.12) 0 120px,
      transparent 121px
    ),
    var(--cream);
}

.news-list-section::before,
.news-list-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.news-list-section::before {
  width: 55px;
  height: 55px;
  top: 80px;
  right: 8%;
  background: rgba(20, 184, 176, 0.07);
}

.news-list-section::after {
  width: 85px;
  height: 85px;
  left: -35px;
  bottom: 100px;
  background: rgba(142, 228, 220, 0.12);
}

.news-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 184, 176, 0.35);
  box-shadow: var(--shadow-hover);
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--turquoise-light), var(--mint-soft));
}

.news-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.045);
}

.news-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--turquoise-dark);
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.65) 0 28px,
      transparent 29px
    ),
    radial-gradient(
      circle at 75% 70%,
      rgba(255, 255, 255, 0.45) 0 42px,
      transparent 43px
    ),
    linear-gradient(135deg, var(--turquoise-light), var(--mint-soft));
  font-size: 18px;
  font-weight: 800;
}

.news-card-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(9, 44, 56, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(6, 31, 41, 0.18);
}

.news-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.news-card-content h3 {
  margin: 0 0 11px;
  color: var(--primary-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
}

.news-card-content p {
  flex-grow: 1;
  margin: 0 0 21px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  padding: 9px 14px;
  color: var(--turquoise-dark);
  text-decoration: none;
  background: var(--turquoise-light);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-card-link span {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.news-card-link:hover {
  color: var(--white);
  background: var(--turquoise);
  transform: translateX(2px);
}

.news-card-link:hover span {
  transform: translateX(5px);
}

.news-pagination {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.news-pagination .pagination {
  display: flex;
  gap: 7px;
  margin: 0;
}

.news-pagination .page-link {
  min-width: 42px;
  padding: 9px 13px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.news-pagination .page-link:hover {
  color: var(--white);
  background: var(--turquoise);
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
  color: var(--white);
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  border-color: var(--turquoise);
  box-shadow: 0 7px 18px rgba(20, 184, 176, 0.22);
}

.news-pagination .page-item.disabled .page-link {
  color: var(--muted);
  background: #f1f7f6;
  border-color: var(--border);
}

.news-empty {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 20px auto;
  padding: 65px 30px;
  text-align: center;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(20, 184, 176, 0.08) 0 45px,
      transparent 46px
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(142, 228, 220, 0.14) 0 65px,
      transparent 66px
    ),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.news-empty-icon {
  margin-bottom: 15px;
  color: var(--turquoise);
  font-size: 50px;
}

.news-empty h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 800;
}

.news-empty p {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 15px;
}

@media (max-width: 991px) {
  .news-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .news-page-header {
    padding: 45px 15px 35px;
  }

  .news-page-header h2 {
    font-size: 32px;
  }

  .news-list-section {
    padding: 50px 15px 60px;
  }

  .news-page-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-card-content {
    padding: 20px;
  }

  .news-card-content h3 {
    font-size: 19px;
  }

  .news-pagination {
    margin-top: 38px;
  }

  .news-pagination .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .news-page-header {
    padding: 40px 15px 30px;
  }

  .news-page-header h2 {
    font-size: 28px;
  }

  .news-list-section {
    padding: 40px 15px 50px;
  }

  .news-card-content {
    padding: 18px;
  }
}
