:root {
      --green: #3FAE49; --green-hover: #2F8A3A;
      --bg: #ffffff; --sand-1: #eadfd2; --sand-2: #d8ccc0;
      --sage: #dfe9df; --footer: #cdbba6;
      --text: #213327; --muted: #555;
      --line: rgba(17,17,17,0.08);
      --shadow: 0 4px 20px rgba(17,17,17,0.06);
      --container: 1240px;
    }
    * { box-sizing: border-box; }
    strong, b { display: inline !important; font-weight: 700; }
    html { scroll-behavior: smooth; }
    body { margin: 0; font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    a.btn, a.btn-primary, a.btn-danger, .cta-box__btn { color: white !important; text-decoration: none !important; }
    button { font: inherit; cursor: pointer; }
    h1,h2,h3,h4,p { margin-top: 0; }
    .container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
    .content-container { width: min(calc(100% - 40px), 780px); margin: 0 auto; }

    /* ── TOPBAR ── */
    .topbar { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
    .topbar-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
    .top-nav { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; font-weight: 600; color: #1f2e22; flex: 1; margin-left: 8px; }
    .top-nav a:hover { color: var(--green); }
    .tablet-cats { display: none; }
    .header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
    .search { display: flex; align-items: center; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; min-width: 200px; color: var(--muted); margin-left: 32px; margin-right: 8px; font-size: 0.9rem; cursor: pointer; gap: 8px; }
    .search svg { width: 16px; height: 16px; stroke: var(--muted); stroke-width: 2; fill: none; flex-shrink: 0; }
    .btn { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent; font-size: 0.92rem; font-weight: 700; transition: 0.18s ease; cursor: pointer; white-space: nowrap; text-decoration: none; }
    .btn-primary { background: var(--green); color: white; box-shadow: 0 8px 20px rgba(63,174,73,0.22); }
    .btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); }
    .btn-danger { background: #e54848; color: white; }
    .btn-danger:hover { background: #c93d3d; transform: translateY(-1px); }
    .category-row { border-top: 1px solid var(--line); background: rgba(63,174,73,0.14); padding: 4px 0; overflow-x: auto; scrollbar-width: none; }
    .category-row::-webkit-scrollbar { display: none; }
    .main-categories { display: flex; align-items: center; gap: 0; font-weight: 700; padding: 6px 0; white-space: nowrap; }
    .main-categories a { font-size: 0.97rem; color: #2f3a31; transition: color 0.15s; }
    .main-categories a + a { position: relative; margin-left: 24px; padding-left: 24px; }
    .main-categories a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: rgba(47,58,49,0.2); }
    .main-categories a:hover { color: var(--green); }
    /* ── HAMBURGER & MOBILE NAV ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; margin-left: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: flex; position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: white; box-shadow: -4px 0 24px rgba(0,0,0,0.12); z-index: 200; padding: 72px 28px 32px; flex-direction: column; gap: 0; transform: translateX(100%); transition: transform 0.3s ease; visibility: hidden; overflow-y: auto; }
    .mobile-nav.open { transform: translateX(0); visibility: visible; }
    .mobile-nav-section-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 16px 0 6px; }
    .mobile-nav-divider { height: 1px; background: var(--line); margin: 8px 0; }
    .mobile-nav a { font-size: 1rem; font-weight: 600; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--line); display: block; }
    .mobile-nav a.cat-link { font-size: 0.95rem; font-weight: 700; color: #2f3a31; }
    .mobile-nav a:last-of-type { border-bottom: none; }
    .mobile-nav a:hover { color: var(--green); }
    .mobile-nav-search { display: flex; align-items: center; gap: 8px; background: rgba(63,174,73,0.06); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; color: var(--muted); font-size: 0.95rem; margin: 8px 0 4px; cursor: pointer; }
    .mobile-nav-search::before { content: "⌕"; font-size: 1.4rem; line-height: 1; }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text); line-height: 1; padding: 4px; }
    .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 199; }
    .mobile-nav-overlay.open { display: block; }
    @media(max-width:1024px){
      .top-nav { display: none; }
      .search { display: none; }
      .category-row { display: none; }
      .hamburger { display: flex; }
      .topbar-row { flex-wrap: wrap; gap: 0; padding: 8px 0; }
      .topbar-row > a:first-child { flex: 1; }
      .header-actions { order: 1; margin-left: auto; gap: 8px; display: flex; align-items: center; padding: 6px 0; }
      .btn { min-height: 38px; padding: 0 14px; font-size: 0.88rem; }
      .tablet-cats { order: 2; display: flex; align-items: center; gap: 0; font-weight: 700; font-size: 0.9rem; margin-top: 4px; background: rgba(63,174,73,0.16); border-radius: 8px; padding: 0 4px; width: calc(100% - 0px); overflow-x: auto; scrollbar-width: none; }
      .tablet-cats::-webkit-scrollbar { display: none; }
      .tablet-cats a { white-space: nowrap; color: #2f3a31; padding: 7px 12px; position: relative; flex-shrink: 0; }
      .tablet-cats a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: rgba(47,58,49,0.2); }
      .tablet-cats a:hover { color: var(--green); }
    }
    @media(min-width:1025px){
      .tablet-cats { display: none; }
    }

        /* ── BREADCRUMB ── */
    .breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: #595959; padding: 20px 0 0; }
    .breadcrumb a:hover { color: var(--text); }

    /* ── ARTICLE HEADER ── */
    .article-header { padding: 28px 0 0; border-bottom: 1px solid var(--line); margin-bottom: 44px; }
    .article-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); margin-bottom: 16px; }
    .article-tag::before { content: ""; width: 16px; height: 1.5px; background: currentColor; }
    .article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px; max-width: 860px; }
    .article-meta-row { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #595959; padding-bottom: 24px; flex-wrap: wrap; }
    .article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
    .meta-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 999px; background: rgba(63,174,73,0.08); color: var(--green); font-size: 12px; font-weight: 700; }

    /* ── ARTICLE BODY ── */
    .article-body { padding-bottom: 52px; }
    .article-body h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin: 44px 0 16px; color: var(--text); }
    .article-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin: 28px 0 12px; color: var(--text); }
    .article-body p { font-size: 1.02rem; color: #333; line-height: 1.75; margin-bottom: 20px; }
    .article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 20px; }
    .article-body li { font-size: 1.02rem; color: #333; line-height: 1.75; margin-bottom: 8px; }
    .article-body strong { display: inline; color: var(--text); font-weight: 700; }
    .article-body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
    .article-body a:hover { color: var(--green-hover); }
    .inline-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

    /* ── KEY TAKEAWAY (pískovcový box) ── */
    .key-takeaway { background: rgba(234,223,210,0.5); border-radius: 14px; padding: 28px 32px; margin: 36px 0; }
    .key-takeaway-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .key-takeaway-title::before { content: ""; display: block; width: 4px; height: 20px; background: var(--green); border-radius: 2px; flex-shrink: 0; }
    .key-takeaway ul { padding-left: 0; margin: 0; list-style: none; }
    .key-takeaway li { display: block; padding-left: 28px; position: relative; font-size: 0.97rem; color: var(--text); line-height: 1.65; margin-bottom: 10px; }
    .key-takeaway li:last-child { margin-bottom: 0; }
    .key-takeaway li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: rgba(63,174,73,0.15); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%233FAE49' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; flex-shrink: 0; }
    .key-takeaway li strong { display: inline; font-weight: 700; color: var(--text); }
    .key-takeaway li em { display: inline; font-style: italic; }
    .key-takeaway li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: rgba(63,174,73,0.15); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%233FAE49' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; flex-shrink: 0; margin-top: 2px; }

    /* ── HERO OBRÁZEK ── */
    .article-hero-img { width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; margin: 0 0 44px; }
    .article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ── OBRÁZEK V TĚLE ── */
    .article-img-block { margin: 36px 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
    .article-img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .article-img-caption { font-size: 0.82rem; color: #595959; margin-top: 8px; text-align: center; font-style: italic; }

    /* ── TIP BOX ── */
    .tip-box { background: rgba(63,174,73,0.07); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 28px 0; }
    .tip-box-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); margin-bottom: 6px; }
    .tip-box p { font-size: 0.95rem; color: var(--text); margin: 0; line-height: 1.6; }
    .tip-box strong { display: inline; font-weight: 700; }

    /* ── INLINE RELATED ── */
    .inline-related { display: flex; align-items: center; gap: 20px; border-left: 3px solid var(--green); background: white; border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 32px 0 32px 32px; box-shadow: 0 2px 10px rgba(17,17,17,0.05); transition: box-shadow 0.18s, transform 0.18s; text-decoration: none; }
    .inline-related:hover { box-shadow: 0 6px 20px rgba(17,17,17,0.09); transform: translateX(3px); }
    .inline-related-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(63,174,73,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .inline-related-body { min-width: 0; flex: 1; }
    .inline-related-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); margin-bottom: 4px; }
    .inline-related-title { font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--text); margin: 0; }
    .inline-related-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 14px; border-radius: 8px; border: 1.5px solid rgba(17,17,17,0.1); background: transparent; color: var(--muted); font-size: 0.82rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

    /* ── PRODUKTY Z ČLÁNKU ── */
    .products-from-article { padding: 52px 0 48px; border-top: 1px solid var(--line); }
    .products-from-article-head { text-align: center; margin-bottom: 32px; }
    .products-from-article-head h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0; }
    .prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 240px)); gap: 16px; justify-content: center; }
    .prod-card { background: white; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; text-align: center; }
    .prod-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(17,17,17,0.09); }
    .prod-media { aspect-ratio: 1/1; background: linear-gradient(135deg, #f4f8f4, #dfe9df); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
    .prod-badge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 7px; border-radius: 6px; background: rgba(17,17,17,0.08); color: var(--text); }
    .prod-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .prod-name { font-size: 0.92rem; font-weight: 700; line-height: 1.3; color: var(--text); margin: 0; }
    .prod-price { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0; }
    .prod-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 18px; border-radius: 8px; background: var(--green); color: white; font-size: 0.84rem; font-weight: 700; border: none; transition: 0.18s; margin-top: auto; }
    .prod-btn:hover { background: var(--green-hover); transform: translateY(-1px); }

    /* ── AUTOR + SHARE ── */
    .author-section { padding: 0 0 52px; }
    .author-box { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(63,174,73,0.04); border: 1px solid rgba(63,174,73,0.1); border-radius: 12px; }
    .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
    .author-info { min-width: 0; flex: 1; }
    .author-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
    .author-desc { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.5; }
    .share-bar { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .share-label { font-size: 0.82rem; font-weight: 600; color: #595959; white-space: nowrap; }
    .share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: 8px; border: 1.5px solid var(--line); background: white; font-size: 0.8rem; font-weight: 600; color: var(--text); cursor: pointer; transition: 0.15s; white-space: nowrap; }
    .share-btn:hover { border-color: var(--green); color: var(--green); }

    /* ── VĚDECKÉ ZDROJE ── */
    .poznamky { background: rgba(17,17,17,0.03); border-top: 1px solid var(--line); padding: 20px 0; font-size: 0.78rem; color: #595959; line-height: 1.7; }
    .poznamky-title { font-weight: 700; font-size: 0.8rem; color: #595959; margin-bottom: 10px; }
    .poznamky p { margin: 0 0 4px; font-size: 0.78rem; color: #595959; }

    /* ── FOOTER ── */
    footer { background: #cdbba6; color: #2c241d; padding: 44px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; gap: 30px; }
    .footer-title { font-size: 1rem; font-weight: 800; margin: 0 0 14px; color: #2c241d; }
    .footer-list { display: grid; gap: 10px; }
    .footer-list a:hover { color: #1f2e22; }
    .footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(44,36,29,0.15); font-size: 0.88rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .top-nav { display: none; }

      .tablet-cats { display: flex; align-items: center; gap: 0; font-weight: 700; flex: 1; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
      .tablet-cats::-webkit-scrollbar { display: none; }
      .tablet-cats a { white-space: nowrap; font-size: 0.9rem; color: #2f3a31; padding: 4px 14px 4px 0; transition: color 0.15s; }
      .tablet-cats a:hover { color: var(--green); }
      .hamburger { display: flex; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .tablet-cats { display: none; }
      .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .author-box { flex-wrap: wrap; }
      .share-bar { width: 100%; justify-content: flex-start; }
      .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    }
    @media (max-width: 480px) {
      .prod-grid { grid-template-columns: 1fr; }
      .inline-related { margin-left: 0; gap: 12px; }
      .inline-related-btn { display: none; }
    }

    /* ── TWO-COL (text + obrázek vedle sebe) ── */
    .article-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 48px 0; }
    .article-two-col.reversed { direction: rtl; }
    .article-two-col.reversed > * { direction: ltr; }
    .article-two-col__img { border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; }
    .article-two-col__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .article-two-col__text h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin: 0 0 16px; color: var(--text); }
    .article-two-col__text h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 12px; color: var(--text); }
    .article-two-col__text p { font-size: 1rem; color: #333; line-height: 1.75; margin-bottom: 16px; }
    .article-two-col__text p:last-child { margin-bottom: 0; }
    .article-two-col__text ul { padding-left: 20px; margin-bottom: 0; }
    .article-two-col__text li { font-size: 1rem; color: #333; line-height: 1.75; margin-bottom: 6px; }
    .article-two-col__text strong { display: inline; font-weight: 700; color: var(--text); }

    /* ── STAT ROW (číselné karty — rychlá fakta) ── */
    .stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 40px 0; }
    .stat-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 20px 18px; text-align: center; box-shadow: 0 2px 10px rgba(17,17,17,0.05); }
    .stat-card__num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
    .stat-card__label { font-size: 0.82rem; font-weight: 700; color: var(--muted); line-height: 1.4; }
    .stat-card strong { display: inline; font-weight: 700; }

    /* ── FAQ SEKCE (rozbalovací) ── */
    .faq-section { margin: 48px 0; }
    .faq-section__title { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 800; letter-spacing: -0.025em; margin: 0 0 20px; }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-item:first-of-type { border-top: 1px solid var(--line); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--text); list-style: none; user-select: none; }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--green); flex-shrink: 0; transition: transform 0.2s; line-height: 1; }
    details[open] .faq-q::after { transform: rotate(45deg); }
    .faq-a { padding: 0 0 18px; font-size: 0.97rem; color: #333; line-height: 1.75; }
    .faq-a p { margin: 0 0 12px; }
    .faq-a strong { display: inline; font-weight: 700; }
    .faq-a p:last-child { margin: 0; }

    /* ── CTA BOX ── */
    .cta-box { background: linear-gradient(135deg, rgba(63,174,73,0.08) 0%, rgba(63,174,73,0.04) 100%); border: 1px solid rgba(63,174,73,0.2); border-radius: 16px; padding: 32px 36px; margin: 48px 0; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    .cta-box__text { flex: 1; min-width: 240px; }
    .cta-box__title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 0 0 8px; line-height: 1.3; }
    .cta-box__sub { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.55; }
    .cta-box strong { display: inline; font-weight: 700; }
    .cta-box__btn { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 24px; border-radius: 12px; background: var(--green); color: white !important; font-size: 0.97rem; font-weight: 800; border: none; cursor: pointer; transition: background 0.18s, transform 0.18s, box-shadow 0.18s; box-shadow: 0 8px 20px rgba(63,174,73,0.25); text-decoration: none !important; white-space: nowrap; }
    .cta-box__btn:hover { background: var(--green-hover); color: white !important; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(63,174,73,0.3); }

    /* ── RESPONSIVE — nové sekce ── */
    @media (max-width: 768px) {
      .article-two-col { grid-template-columns: 1fr; gap: 24px; }
      .article-two-col.reversed { direction: ltr; }
      .article-two-col__img { aspect-ratio: 16/9; }
      .stat-row { grid-template-columns: repeat(2, 1fr); }
      .cta-box { flex-direction: column; padding: 24px; gap: 20px; }
    }
    @media (max-width: 480px) {
      .stat-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    }
