/* Блог */

.blog-hero {
  background: linear-gradient(135deg, #1a5f3c 0%, #0f3d26 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.blog-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 640px;
}

/* Сетка карточек */
.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 6px 24px rgba(26, 95, 60, 0.13);
  transform: translateY(-3px);
}

.blog-card__badge {
  display: inline-block;
  background: #e8f5ee;
  color: #1a5f3c;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 0.5rem;
}

.blog-card__body {
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  color: #555;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
}

.blog-card__link {
  color: #1a5f3c;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* Статья */
.article-hero {
  background: linear-gradient(135deg, #1a5f3c 0%, #0f3d26 100%);
  color: #fff;
  padding: 3rem 0 2rem;
}

.article-hero__breadcrumb {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.article-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.article-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.article-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.article-hero__meta {
  font-size: 0.85rem;
  opacity: 0.75;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a5f3c;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-body p {
  line-height: 1.75;
  color: #333;
  margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.article-body li {
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.3rem;
}

.article-body a {
  color: #1a5f3c;
  font-weight: 500;
}

.article-cta {
  background: #e8f5ee;
  border: 1px solid #b2d8c2;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.article-cta__title {
  font-weight: 700;
  color: #1a5f3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-cta__phones a {
  color: #1a5f3c;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
}

.article-cta__phones a:hover {
  text-decoration: underline;
}

.article-nav {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.article-nav a {
  color: #1a5f3c;
  font-weight: 500;
}
