.news-page {
  padding-top: 56px;
}

.news-page-head {
  margin-bottom: 22px;
}

.news-page-head h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.news-page-head p {
  color: var(--text-soft);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  background: var(--panel);
  border: 1px solid #dfe8f2;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cfe0ff;
}

.news-card-date {
  flex: 0 0 110px;
  min-width: 110px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  text-align: center;
}

.news-card-day {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  color: #1d4ed8;
}

.news-card-month {
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #475569;
}

.news-card-year {
  margin-top: 4px;
  font-size: 0.84rem;
  color: #64748b;
}

.news-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

.news-card-meta {
  margin-bottom: 10px;
}

.news-card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  text-decoration: none;
}

.news-card-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.25;
}

.news-card-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color var(--transition);
}

.news-card-title a:hover {
  color: var(--primary);
}

.news-card-excerpt {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}

.news-card-link:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.news-empty {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.news-empty strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.news-empty span {
  color: var(--text-soft);
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.news-pagination-pages {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-pagination-btn,
.news-pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dbe5f0;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition);
}

.news-pagination-page.is-active,
.news-pagination-btn:hover,
.news-pagination-page:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.news-pagination-dots {
  color: #64748b;
  font-weight: 700;
}

.news-details-page {
  padding-top: 40px;
}

.news-details-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.news-details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition);
}

.news-back-link:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.news-details-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.news-details-card {
  background: var(--panel);
  border: 1px solid #dfe8f2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.news-details-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.news-details-published {
  color: #64748b;
  font-size: 0.95rem;
}

.news-details-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.news-details-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.news-details-content {
  font-size: 1rem;
  line-height: 1.95;
  color: #334155;
}

.news-details-share {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #dbe5f0;
}

.news-details-share strong {
  display: block;
  margin-bottom: 14px;
  color: #0f172a;
}

.news-details-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.station-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.station-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  opacity: 0.96;
}

.share-facebook {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.share-instagram {
  background: #fff1f5;
  color: #db2777;
  border-color: #fbcfe8;
}

.share-tiktok {
  background: #f8fafc;
  color: #111827;
  border-color: #dbe5f0;
}

.share-twitter {
  background: #f8fafc;
  color: #0f172a;
  border-color: #dbe5f0;
}

.share-linkedin {
  background: #eef6ff;
  color: #0a66c2;
  border-color: #bfdbfe;
}

.share-viber {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.share-whatsapp {
  background: #ecfdf3;
  color: #15803d;
  border-color: #bbf7d0;
}

.news-copy-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.news-page .stations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.news-page .stations-main {
  min-width: 0;
}

@media (max-width: 1199px) {
  .news-page .stations-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }
}

@media (max-width: 991px) {
  .news-page .stations-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .news-page {
    padding-top: 32px;
  }

  .news-page-head {
    margin-bottom: 18px;
    text-align: center;
  }

  .news-card {
    flex-direction: column;
    padding: 18px 16px 20px;
    gap: 16px;
  }

  .news-card-date {
    width: 100%;
    min-width: 0;
    flex: none;
    flex-direction: row;
    gap: 10px;
  }

  .news-card-day,
  .news-card-month,
  .news-card-year {
    margin: 0;
  }

  .news-card-title {
    font-size: 1.2rem;
  }

  .news-details-page {
    padding-top: 32px;
  }

  .news-details-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-details-card {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .news-details-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }
}