/* ===== HOME LAYOUT ===== */
.home-grid{
  display:grid;
  grid-template-columns: 2.2fr 1fr;
  gap:16px;
  align-items:start;
}

/* ===== HERO ===== */
.hero{
  padding:18px;
  display:block;
}

.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:nowrap;
}

.hero-date{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  white-space:nowrap;
}

.hero-badges{
  display:flex;
  gap:10px;
  white-space:nowrap;
  margin-bottom: 12px;
}

.hero-body{
  margin-top:20px;
}

.hero-image{
  float:right;
  width:min(520px, 46%);
  margin:4px 0 14px 28px;
}

.hero-image img{
  width:100%;
  height:auto;
  display:block;
}

.hero-body::after{
  content:"";
  display:block;
  clear:both;
}

.hero-title{
  font-weight:900;
  font-size:22px;
  margin:0 0 14px 0;
}

.hero-text{
  line-height:1.7;
  margin:0 0 14px 0;
}

.hero-foot{
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
}

.hero-date-icon{
  width:18px !important;
  height:18px !important;
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
  flex:0 0 auto;
}
.hero-date-icon path{
  stroke: currentColor !important;
}

/* ===== HOME NEWS (clean list) ===== */
.home-news-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:12px;
}

.home-news-item{
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}

.home-news-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.home-news-title{
  font-weight:900;
  font-size:16px;
  margin-bottom:6px;
}

.home-news-desc{
  color:var(--muted);
  font-size:14px;
  margin-bottom:8px;
}

/* Ссылка "Подробнее..." — синяя, без подчёркивания */
.home-news-more{
  color:var(--brand);
  font-weight:800;
  font-size:14px;
  text-decoration:none;
}

.home-news-more:hover{
  text-decoration:underline;
}

/* "Все новости" */
.home-news-all{
  display:inline-block;
  margin-top:14px;
  font-weight:800;
  color:var(--brand);
  text-decoration:none;
}
.home-news-all:hover{
  text-decoration:underline;
}

/* ===== PRICING ===== */

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
  margin-top:18px;
}

.pricing-card{
  padding:22px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  transition:all .25s ease;
  position:relative;
}

.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
}

/* чтобы кнопка была внизу */
.pricing-card--flex{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Featured (годовой) */
.pricing-card--featured{
  border:2px solid rgb(240,130,30);
}

.pricing-badge{
  position:absolute;
  top:-10px;
  right:16px;
  background:rgb(240,130,30);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
}

/* Заголовки */
.pricing-title{
  font-size:18px;
  font-weight:900;
  margin-bottom:12px;
}

/* Цена */
.pricing-price{
  font-size:24px;
  font-weight:900;
  margin-bottom:8px;
}

.price-year{
  color:rgb(240,130,30);
  font-size:28px;
  font-weight:900;
}

/* Описание */
.pricing-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  margin-top:6px;
}

/* CTA */
.pricing-cta{
  margin-top:18px;
}

/* Синяя кнопка (месяц) */
.btn-blue{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  font-weight:800;
  text-decoration:none;
  transition:.2s;
}

.btn-blue:hover{
  opacity:.9;
}

/* Оранжевая кнопка (год) */
.btn-orange{
  display:inline-block;
  background:rgb(240,130,30);
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:900;
  text-decoration:none;
  transition:.2s;
}

.btn-orange:hover{
  background:rgb(215,110,15);
}

.pricing-card--featured .pricing-price .price-year{
  color: rgb(240,130,30) !important;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .2px;
}