/* ═══════════════════════════════════════════════════════════
   Без педалей — стиль статейника (blog)
   Дизайн-система как у лендинга: цвета, Manrope/Unbounded, скругления
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #6ABF2E;
  --green-dark:  #4A8F1E;
  --green-light: #A8D400;
  --green-bg:    #EEF8E2;
  --dark:        #141414;
  --cream:       #F5F2EB;
  --cream2:      #EFECE4;
  --white:       #FFFFFF;
  --gray-line:   #E2DDD6;
  --text:        #1A1A1A;
  --muted:       #777;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; border-radius: 20px; }
* { max-width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-green { background: var(--green); color: var(--dark); font-size: 16px; padding: 14px 26px; }
.btn-green:hover { background: #7fd43a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(106,191,46,.35); }
.btn-dark  { background: var(--dark); color: var(--white); font-size: 16px; padding: 14px 26px; }
.btn-dark:hover { background: #2c2c2c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ── HEADER ── */
.bheader {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,235,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-line);
  padding: 13px 0;
}
.bheader__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 42px; width: 42px; object-fit: contain; border-radius: 0; flex-shrink: 0; }
.logo-text { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.logo-text small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.bheader__nav { display: flex; align-items: center; gap: 20px; }
.bheader__link { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .2s; }
.bheader__link:hover { color: var(--text); }

/* ── BREADCRUMBS ── */
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--green-dark); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--muted); }

/* ── ARTICLE ── */
.article { max-width: 760px; margin: 0 auto; padding: 40px 28px 72px; }
.article h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 900; line-height: 1.12; letter-spacing: -1px;
  color: var(--dark); margin-bottom: 18px;
}
.article__lead {
  font-size: 19px; color: #444; line-height: 1.65;
  margin-bottom: 14px; font-weight: 500;
}
.article__meta { font-size: 13px; color: var(--muted); margin-bottom: 30px; }
.article h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.5px;
  color: var(--dark); margin: 42px 0 14px;
}
.article h3 {
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin: 28px 0 10px;
}
.article p { margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { margin-bottom: 9px; }
.article a { color: var(--green-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--green); }
.article strong { font-weight: 800; color: var(--dark); }
.article blockquote {
  border-left: 4px solid var(--green);
  background: var(--green-bg);
  padding: 16px 22px; margin: 0 0 22px;
  border-radius: 0 14px 14px 0;
  font-size: 17px; color: #333;
}

/* таблицы (тарифы/расчёты) */
.article table {
  width: 100%; border-collapse: collapse; margin: 0 0 24px;
  font-size: 15px; background: var(--white);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.article th, .article td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-line); }
.article th { background: var(--dark); color: var(--white); font-weight: 700; }
.article tr:last-child td { border-bottom: none; }
.article td:last-child, .article th:last-child { text-align: right; }

/* ── CTA BOX (призыв арендовать) ── */
.cta-box {
  background: var(--dark); color: var(--white);
  border-radius: 22px; padding: 30px 28px;
  margin: 36px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--green-light) 1px, transparent 1px);
  background-size: 14px 14px; opacity: 0.10; pointer-events: none;
}
.cta-box__title { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; position: relative; }
.cta-box__sub { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 20px; position: relative; }
.cta-box__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-box .btn-dark { background: rgba(255,255,255,.12); }
.cta-box .btn-dark:hover { background: rgba(255,255,255,.2); }

/* ── «Читайте также» ── */
.more { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--gray-line); }
.more__title { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.more__list { list-style: none; margin: 0; padding: 0; }
.more__list li { margin-bottom: 10px; }
.more__list a { font-size: 16px; font-weight: 600; color: var(--green-dark); text-decoration: none; }
.more__list a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   BLOG LIST (страница-список)
═══════════════════════════════════════════════════════════ */
.blog-hero { padding: 56px 0 12px; }
.blog-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.05;
  color: var(--dark); margin-bottom: 14px;
}
.blog-hero p { font-size: 18px; color: var(--muted); max-width: 620px; }
.blog-list { padding: 32px 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--gray-line);
  border-radius: 22px; padding: 28px; text-decoration: none;
  color: var(--text); transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.08); border-color: var(--green); }
.post-card__cover {
  width: calc(100% + 56px); max-width: none;
  margin: -28px -28px 18px; height: 180px;
  object-fit: cover; border-radius: 0; display: block;
}
.post-card:hover .post-card__cover { opacity: .94; }
.post-card__tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--green-dark); background: var(--green-bg);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.post-card__title { font-family: 'Unbounded', sans-serif; font-size: 21px; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 10px; }
.post-card__desc { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.post-card__more { font-size: 14px; font-weight: 700; color: var(--green-dark); }

/* ── FOOTER ── */
.bfooter { background: var(--dark); padding: 28px 0; }
.bfooter__inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.bfooter a { color: rgba(255,255,255,.5); text-decoration: none; }
.bfooter a:hover { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .bheader__nav .bheader__link { display: none; }
  .article { padding: 28px 20px 56px; }
  .blog-list { grid-template-columns: 1fr; gap: 16px; }
  .bfooter__inner { flex-direction: column; text-align: center; gap: 8px; }
  .cta-box { padding: 26px 20px; }
}
