.news {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px;
  margin-top: 47px;
  margin-bottom: 142px;
  width: 100%;
}

.breadcrumbs {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 50px;
  padding-left: 5px;
}

.breadcrumbs a {
  color: #555;
  text-decoration: none;
}



/* Список новостей */
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Карточка новости */
.news-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 24px;
  backdrop-filter: blur(5px);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgb(0 0 0 / 16%);
  background: rgb(255 255 255 / 40%);
  transition: box-shadow .3s ease-in-out, transform 0.5s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 9px 7px 3px rgba(15, 34, 79, .14);
  border-color: rgb(0 169 67 / 51%);
}

.news-card.latest {
  border-left: 4px solid #00a943;
}

.news-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00a943;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

/* Важная новость */
.news-card.important {
  border-left: 4px solid #00a943;
}

/* Дата */
.news-card-date {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

/* Заголовок */
.news-card-title {
  font-size: 18px;
  font-family: Roboto !important;
  font-weight: 450 !important;
  margin: 0 0 8px;
}

/* Описание */
.news-card-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}




.news-title {
  text-align: left;
  font-size: 28px;
  font-family: Roboto !important;
  font-weight: 400 !important;
  margin-bottom: 8px;
  letter-spacing: 0;
  line-height: normal;
  padding: 0px 0px 0px 5px;
}

.news-meta {
  font-size: 14px;
  text-align: left;
  color: #64748b;
  margin-bottom: 40px;
  padding-left: 5px;
}

/* Контент */
.news-content {
  font-size: 15px;
  line-height: 1.7;
  counter-reset: manual;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgb(0 0 0 / 16%);
  display: flex;
  flex-direction: column;
  background: rgb(255 255 255 / 40%);
  backdrop-filter: blur(5px);
}

.news-content p {
  margin-bottom: 14px;
}

.news-content hr {
  border: none;
  border-top: 1px solid rgb(0 0 0 / 12%);
  margin: 28px 0;
}

/* Секции */
.news-section {
  margin-bottom: 40px;
}

.news-section h2 {
  font-size: 17px;
  font-family: Roboto !important;
  font-weight: 450 !important;
  margin: 0 0 14px;
}

/* Таблицы тарифов */
.news-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 16px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}

.news-table thead {
  background: rgba(0, 0, 0, 0.04);
}

.news-table th,
.news-table td {
  padding: 12px 14px;
  text-align: left;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.news-table th {
  font-weight: 500;
  color: #333;
}

.news-table td:last-child,
.news-table th:last-child {
  text-align: right;
  font-weight: 500;
}

/* Подсветка строк */
.news-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.025);
}

/* Старая / новая цена */
.news-table td:nth-child(2) {
  color: #6b7280;
}

.news-table td:nth-child(3) {
  color: #00a943;
  font-weight: 500;
}

.news-table th:first-child,
.news-table td:first-child {
  width: 60%;
}

.news-table th:nth-child(2),
.news-table td:nth-child(2) {
  width: 20%;
  text-align: right;
}

.news-table th:nth-child(3),
.news-table td:nth-child(3) {
  width: 20%;
  text-align: right;
}


/* Кнопка назад */
.news-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #00a943;
  text-decoration: none;
  font-size: 12pt;
  font-family: Roboto;
  font-weight: 450;
  opacity: .75;
  transition: color 0.3s;
}

.news-back:hover {
  text-decoration: underline;
}

.news-back::before {
  content: "←";
  transition: transform 0.25s ease;
}

.news-back:hover::before {
  transform: translateX(-4px);
}

.news-consult {
  padding: 24px;
  border-radius: 24px;
  background: rgba(0, 169, 67, 0.06);
}

.news-consult p {
  margin-bottom: 10px;
  font-size: 19px;
  color: #334155;
}

.news-phone {
  display: inline-block;
  font-size: 27px;
  font-family: Roboto;
  font-weight: 500;
  color: #00a943;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.news-phone:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.columns-list {
  column-width: 220px;
  column-gap: 32px;
}

.columns-list li {
    padding: 12px 14px;
    text-align: left;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.columns-list li:hover {
  background: rgba(0, 0, 0, 0.025);
}

.news-content li {
    padding: 12px 14px;
    text-align: left;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 40px;
}

.news-content li:hover {
  background: rgba(0, 0, 0, 0.025);
}



@media (max-width: 900px) {
  .news {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 20px;
  }

  .news-title {
    text-align: center;
    font-size: 24px;
    padding: 0px;
  }

  .news-card {
    padding: 18px 20px;
    border-radius: 18px;
  }

  .news-card-title {
    font-size: 16px;
  }

  .news-card-text {
    font-size: 13px;
  }

  .news-meta {
    text-align: center;
    padding: 0px;
  }

  .news-content {
    font-size: 13px;
    padding: 20px;
    border-radius: 20px;
  }

  /* Таблицы на мобилках */
  .news-table {
    font-size: 13px;
  }

  .news-table th,
  .news-table td {
    padding: 10px;
    font-size: 12px;
  }

  .news-consult {
    padding: 18px;
    border-radius: 20px;
    text-align: center;
  }

  .news-consult p {
    font-size: 15px;
  }

  .news-phone {
    font-size: 23px;
  }
}