    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    :root {
      --green:      #1a7a4a;
      --green-dark: #0d4a2a;
      --green-lt:   #f0faf5;
      --accent:     #4dd98a;
      --text:       #111827;
      --text-2:     #4b5563;
      --text-3:     #9ca3af;
      --gray-50:    #f9fafb;
      --gray-100:   #f3f4f6;
      --gray-200:   #e5e7eb;
      --nav-h:      72px;
      --font:       Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── TOPBAR ── */
    .topbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 9px 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .topbar__left { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #444; white-space: nowrap; }
    .topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
    .topbar__center { font-size: 12.5px; color: #555; display: flex; align-items: center; gap: 6px; }
    .topbar__center svg { width: 11px; height: 11px; fill: var(--green); flex-shrink: 0; }
    .topbar__tel { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: #222; padding: 5px 14px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; white-space: nowrap; transition: border-color 0.15s, color 0.15s; }
    .topbar__tel svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
    .topbar__tel:hover { border-color: var(--green); color: var(--green); }
    @media (max-width: 768px) { .topbar { display: none; } }

    /* ── NAV ── */
    .nav { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.09); position: fixed; top: 0; left: 0; right: 0; z-index: 200; box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-h); }
    .nav__inner { width: 100%; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo img { max-height: 25px; height: auto; width: auto; display: block; }
    .nav__links { display: flex; align-items: center; list-style: none; flex: 1; justify-content: flex-start; gap: 10px; margin-left: 24px; }
    .nav__links a { font-size: 14.5px; font-weight: 500; color: #444; text-decoration: none; padding: 8px 13px; border-radius: 6px; transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav__links li.nav__active a { color: var(--green); font-weight: 700; border-bottom: 2px solid var(--green); border-radius: 0; padding-bottom: 6px; }
    .nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav__tel { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #111; text-decoration: none; padding: 8px 16px; border: 1.5px solid #ddd; border-radius: 6px; transition: border-color 0.18s, background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__tel svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }
    .nav__tel:hover { border-color: var(--green); background: var(--green-lt); color: var(--green); }
    .btn-book { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; min-height: 44px; white-space: nowrap; transition: background 0.18s; }
    .btn-book:hover { background: var(--green-dark); }
    .nav__item-drop { position: static; list-style: none; }
    .nav__drop-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: #444; padding: 8px 13px; border-radius: 6px; background: none; border: none; cursor: pointer; font-family: var(--font); transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__drop-toggle svg { width: 14px; height: 14px; transition: transform 0.22s; flex-shrink: 0; stroke: currentColor; fill: none; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle { background: #f3f3f3; color: #111; }
    .nav__mega { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-top: 2px solid var(--green); box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 190; padding: 28px 40px 32px; }
    .nav__item-drop.open .nav__mega { display: block; }
    .nav__mega-inner { padding: 0 40px; }
    .nav__mega-heading { font-size: 10.5px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
    .nav__mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
    .nav__mega a.nav__mega-link { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: #333 !important; text-decoration: none; padding: 11px 14px; border-radius: 6px; white-space: nowrap; background: transparent; transition: background 0.15s, color 0.15s; }
    .nav__mega a.nav__mega-link:hover { background: #f0faf5 !important; color: var(--green) !important; }
    .nav__mega a.nav__mega-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.40; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav__mega a.nav__mega-link:hover svg { opacity: 1; }
    .nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
    .nav__burger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.28s, opacity 0.28s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); z-index: 199; padding: 8px 24px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .nav__drawer.open { display: block; }
    .nav__drawer ul { list-style: none; }
    .nav__drawer ul li a { display: block; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
    .nav__drawer ul li a:hover { color: var(--green); }
    .drawer-tel { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--green); padding: 16px 0 4px; text-decoration: none; }
    .drawer-repairs-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font); text-align: left; }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; list-style: none; padding-left: 12px; }
    .drawer-repairs-sub.open { display: block; }
    .drawer-repairs-sub li a { font-size: 14px; font-weight: 400; color: #555; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    @media (max-width: 1024px) { .nav__tel { display: none; } }
    @media (max-width: 1100px) { .nav__links, .btn-book { display: none; } .nav__burger { display: flex; } .nav__mega { display: none !important; } .nav__logo img { height: 13px; } .nav__inner { padding: 0 32px 0 16px; } }

    /* ── HERO ── */
    .blog-hero { background: var(--gray-50); overflow: hidden; border-bottom: 1px solid var(--gray-200); }
    .blog-hero__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; min-height: 420px; align-items: center; position: relative; }
    .blog-hero__content { padding: 60px 52px 60px 40px; }
    .blog-hero__eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); background: var(--green-lt); border: 1px solid rgba(26,122,74,0.18); padding: 5px 12px; border-radius: 4px; margin-bottom: 16px; }
    .blog-hero__eyebrow svg { width: 12px; height: 12px; stroke: var(--green); fill: none; }
    .blog-hero__h1 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 900; color: var(--text); line-height: 1.1; letter-spacing: -1px; margin-bottom: 6px; }
    .blog-hero__script { display: block; font-family: 'Dancing Script', cursive; font-size: clamp(26px, 3vw, 42px); font-weight: 700; color: var(--green); letter-spacing: 0; line-height: 1.2; }
    .blog-hero__desc { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; max-width: 480px; margin-top: 14px; }
    .blog-hero__search { display: flex; align-items: center; gap: 0; max-width: 380px; border: 1.5px solid var(--gray-200); border-radius: 8px; background: #fff; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
    .blog-hero__search input { flex: 1; padding: 12px 16px; font-size: 14px; font-family: var(--font); color: var(--text); border: none; outline: none; background: transparent; }
    .blog-hero__search input::placeholder { color: var(--text-3); }
    .blog-hero__search button { background: var(--green); border: none; cursor: pointer; padding: 12px 16px; display: flex; align-items: center; justify-content: center; transition: background 0.18s; }
    .blog-hero__search button:hover { background: var(--green-dark); }
    .blog-hero__search button svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
    .blog-hero__img-side { position: relative; height: 100%; min-height: 420px; }
    .blog-hero__img-wrap { position: absolute; inset: 0; border-radius: 500px 0 0 500px; overflow: hidden; }
    .blog-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .blog-hero__badge { position: absolute; left: -48px; bottom: 52px; width: 110px; height: 110px; background: var(--green); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 3; box-shadow: 0 8px 28px rgba(0,0,0,0.22); padding: 12px; }
    .blog-hero__badge svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.85); fill: none; margin-bottom: 4px; }
    .blog-hero__badge span { font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.90); line-height: 1.4; }
    @media (max-width: 900px) { .blog-hero__inner { grid-template-columns: 1fr; min-height: auto; } .blog-hero__content { padding: 48px 24px 36px; } .blog-hero__img-side { min-height: 260px; } .blog-hero__img-wrap { position: relative; inset: auto; height: 260px; border-radius: 500px 500px 0 0; } .blog-hero__badge { left: 50%; transform: translateX(-50%); bottom: auto; top: -55px; } }

    /* ── MAIN LAYOUT ── */
    .blog-main { background: #fff; padding: 52px 24px 80px; }
    .blog-main__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

    /* ── BLOG CARDS ── */
    .blog-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .blog-section__title { font-size: 22px; font-weight: 900; color: var(--text); }
    .blog-section__view { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--green); }
    .blog-section__view svg { width: 14px; height: 14px; stroke: var(--green); fill: none; }
    .blog-cards { display: flex; flex-direction: column; gap: 24px; }
    .blog-card { display: flex; gap: 20px; border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 0.2s, border-color 0.2s; position: relative; }
    .blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); border-color: rgba(26,122,74,0.2); }
    .blog-card__img { width: 200px; flex-shrink: 0; overflow: hidden; }
    .blog-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.3s; }
    .blog-card:hover .blog-card__img img { transform: scale(1.04); }
    .blog-card__body { flex: 1; padding: 20px 20px 20px 4px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
    .blog-card__cat { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); }
    .blog-card__cat:empty { display: none; }
    .blog-card__title { font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.35; }
    .blog-card__title a { color: inherit; }
    .blog-card__title a:hover { color: var(--green); }
    .blog-search-highlight { background: #ffe066; color: inherit; border-radius: 3px; padding: 0 2px; }
    .blog-card__excerpt { font-size: 13.5px; color: var(--text-2); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; }
    .blog-card__meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); }
    .blog-card__meta svg { width: 12px; height: 12px; stroke: var(--text-3); fill: none; flex-shrink: 0; }
    .blog-card__meta span { display: flex; align-items: center; gap: 4px; }
    .blog-card__read { font-size: 13px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
    .blog-card__read svg { width: 13px; height: 13px; stroke: var(--green); fill: none; }
    .blog-card__bookmark { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 6px; background: rgba(255,255,255,0.9); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s; }
    .blog-card__bookmark svg { width: 14px; height: 14px; stroke: var(--text-3); fill: none; }
    .blog-card__bookmark:hover { background: var(--green-lt); }
    .blog-card__bookmark:hover svg { stroke: var(--green); }
    .blog-card.hidden { display: none; }
  @media (max-width: 600px) {
  .blog-card { flex-direction: column; }
  .blog-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
  }
  .blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .blog-card__body { padding: 16px; }
}
    /* ── SIDEBAR ── */
    .sidebar { display: flex; flex-direction: column; gap: 28px; }
    .sidebar__block { border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; background: #fff; }
    .sidebar__title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 18px; }
    /* Popular posts */
    .popular-list { display: flex; flex-direction: column; gap: 16px; }
    .popular-item { display: flex; gap: 12px; align-items: flex-start; }
    .popular-item__img { width: 68px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
    .popular-item__img img { width: 100%; height: 100%; object-fit: cover; }
    .popular-item__body { flex: 1; min-width: 0; }
    .popular-item__title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .popular-item__title:hover { color: var(--green); }
    .popular-item__date { font-size: 11px; color: var(--text-3); }
    /* CTA card */
    .sidebar-cta { background: #0d3321; border-radius: 14px; padding: 24px; position: relative; overflow: hidden; }
    .sidebar-cta__title { font-size: 17px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 8px; }
    .sidebar-cta__text { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.55; margin-bottom: 18px; }
    .sidebar-cta__btn { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: 13.5px; font-weight: 700; padding: 11px 20px; border-radius: 50px; text-decoration: none; transition: background 0.18s; }
    .sidebar-cta__btn:hover { background: #155c35; }
    .sidebar-cta__btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; }

    /* ── PAGINATION ── */
    .blog-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
    .blog-page-btn { min-width: 38px; height: 38px; padding: 0 12px; border-radius: 8px; border: 1.5px solid var(--gray-200); background: #fff; font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--text-2); cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
    .blog-page-btn:hover:not(:disabled):not(.active) { border-color: var(--green); color: var(--green); }
    .blog-page-btn.active { background: var(--green); border-color: var(--green); color: #fff; cursor: default; }
    .blog-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

    /* ── ARTICLE READER MODAL ── */
    .blog-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(8,16,12,0.55); z-index: 500; }
    .blog-modal-overlay.open { display: block; }
    .blog-modal { position: fixed; top: 0; right: 0; bottom: 0; width: min(720px, 100%); background: #fff; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s cubic-bezier(.16,1,.3,1); box-shadow: -20px 0 60px rgba(0,0,0,0.25); }
    .blog-modal-overlay.open .blog-modal { transform: translateX(0); }
    .blog-modal__topbar { position: sticky; top: 0; background: #fff; display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; border-bottom: 1px solid var(--gray-200); z-index: 2; }
    .blog-modal__back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 700; color: var(--green); font-size: 14px; background: none; border: none; cursor: pointer; padding: 4px; }
    .blog-modal__close { width: 34px; height: 34px; border-radius: 50%; background: var(--gray-100); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-2); transition: background 0.15s; }
    .blog-modal__close:hover { background: var(--gray-200); }
    .blog-modal__hero { position: relative; margin: 20px 28px 0; border-radius: 16px; overflow: hidden; background: var(--gray-100); }
    .blog-modal__hero img { width: 100%; max-height: 340px; object-fit: cover; display: block; }
    .blog-modal__badge { position: absolute; right: 16px; bottom: 16px; background: var(--green); color: #fff; border-radius: 12px; padding: 10px 14px; display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; font-size: 10.5px; font-weight: 800; line-height: 1.3; box-shadow: 0 8px 22px rgba(0,0,0,0.25); }
    .blog-modal__body { padding: 22px 28px 60px; }
    .blog-modal__cat { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
    .blog-modal__cat:empty { display: none; }
    .blog-modal__meta { display: flex; align-items: center; gap: 8px; color: var(--text-3); font-size: 13px; margin-bottom: 14px; }
    .blog-modal__title { font-size: 26px; font-weight: 900; line-height: 1.3; margin-bottom: 20px; color: var(--text); }
    .blog-modal__content { font-size: 15px; line-height: 1.8; color: var(--text-2); }
    .blog-modal__content h2, .blog-modal__content h3, .blog-modal__content h4 { color: var(--text); font-weight: 800; margin: 28px 0 12px; line-height: 1.35; }
    .blog-modal__content p { margin-bottom: 16px; }
    .blog-modal__content ul, .blog-modal__content ol { margin: 0 0 16px 20px; }
    .blog-modal__content li { margin-bottom: 8px; }
    .blog-modal__content img { max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0; }
    .blog-modal__content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
    .blog-modal__content th, .blog-modal__content td { border: 1px solid var(--gray-200); padding: 8px 12px; text-align: left; }
    .blog-modal__content blockquote { border-left: 3px solid var(--green); padding: 12px 18px; background: var(--green-lt); border-radius: 0 8px 8px 0; margin: 20px 0; }
    .blog-modal__content a { color: var(--green); text-decoration: underline; }
    .blog-modal__cta { margin-top: 36px; padding: 22px; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .blog-modal__cta p { margin: 0; font-size: 14px; color: var(--text-2); font-weight: 600; max-width: 320px; }
    .blog-modal__cta-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: 13.5px; font-weight: 700; padding: 11px 20px; border-radius: 50px; text-decoration: none; white-space: nowrap; transition: background 0.18s; }
    .blog-modal__cta-btn:hover { background: var(--green-dark); }
    body.blog-modal-open { overflow: hidden; }
    @media (max-width: 700px) {
      .blog-modal { width: 100%; }
      .blog-modal__topbar { padding: 14px 18px; }
      .blog-modal__hero { margin: 14px 18px 0; }
      .blog-modal__body { padding: 18px 18px 48px; }
      .blog-modal__title { font-size: 21px; }
    }

    /* ── NEWSLETTER ── */
    .newsletter { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 52px 24px; }
    .newsletter__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
    .newsletter__icon { width: 72px; height: 72px; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .newsletter__icon svg { width: 32px; height: 32px; stroke: var(--green); fill: none; stroke-width: 1.5; }
    .newsletter__text { flex: 1; min-width: 0; }
    .newsletter__text h2 { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
    .newsletter__text p { font-size: 14px; color: var(--text-2); }
    .newsletter__form { display: flex; gap: 10px; flex-shrink: 0; }
    .newsletter__input { padding: 12px 18px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: var(--font); color: var(--text); width: 240px; outline: none; transition: border-color 0.18s; }
    .newsletter__input:focus { border-color: var(--green); }
    .newsletter__input::placeholder { color: var(--text-3); }
    .newsletter__btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer; font-family: var(--font); white-space: nowrap; transition: background 0.18s; }
    .newsletter__btn:hover { background: var(--green-dark); }
    .newsletter__btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; }
    .newsletter__note { font-size: 11.5px; color: var(--text-3); margin-top: 6px; text-align: center; }
    @media (max-width: 900px) { .newsletter__inner { flex-direction: column; align-items: flex-start; gap: 20px; } .newsletter__form { flex-direction: column; width: 100%; } .newsletter__input { width: 100%; } }

    /* ── FOOTER ── */
    .footer { background: #0d1f14; padding: 56px 24px 28px; }
    .footer__inner { max-width: 1200px; margin: 0 auto; }
    .footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer__brand-logo { margin-bottom: 12px; }
    .footer__brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(0.75); }
    .footer__desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
    .footer__socials { display: flex; gap: 10px; }
    .footer__social { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.50); text-decoration: none; transition: background 0.15s, color 0.15s; }
    .footer__social svg { width: 14px; height: 14px; }
    .footer__social:hover { background: rgba(77,217,138,0.15); color: #4dd98a; }
    .footer__col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
    .footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col-links a { font-size: 14px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
    .footer__col-links a:hover { color: #fff; }
    .footer__col-links a.active { color: #4dd98a; }
    .footer__contact-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; }
    .footer__contact-row svg { width: 14px; height: 14px; stroke: #4dd98a; fill: none; flex-shrink: 0; margin-top: 3px; }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer__copy { font-size: 12.5px; color: rgba(255,255,255,0.25); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: 12.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
    .footer__legal a:hover { color: rgba(255,255,255,0.70); }
    @media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
    @media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; gap: 20px; } .footer__bottom { flex-direction: column; align-items: flex-start; } .footer__col-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; } }

    /* ── RESPONSIVE BLOG LAYOUT ── */
    @media (max-width: 1024px) { .blog-main__inner { grid-template-columns: 1fr 300px; gap: 32px; } }
    @media (max-width: 768px) { .blog-main__inner { grid-template-columns: 1fr; } .sidebar { margin-top: 0; } }
    @media (max-width: 480px) { .blog-main { padding: 36px 16px 60px; } }
