/* ============================================================
   blog/style.css — wspólny CSS dla wszystkich postów bloga
   Lokal360.pl
   ============================================================ */

/* 0. FONTS (spójne z style.css) */
@font-face{font-family:'DM Sans';src:url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'DM Sans';src:url('/fonts/dm-sans-v17-latin-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'DM Sans';src:url('/fonts/dm-sans-v17-latin-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'DM Sans';src:url('/fonts/dm-sans-v17-latin-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}

/* 1. ROOT VARIABLES — superset ze wszystkich postów */
:root {
  --teal: #0f766e;
  --teal-l: #14b8a6;
  --teal-bg: #f0fdfa;
  --ink: #111827;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 10px;
  --radius-xl: 16px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', system-ui, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* 3. LAYOUT */
.mx { max-width: 1152px; margin: 0 auto; padding: 0 16px; }
@media(min-width:640px){.mx{padding:0 24px}}
.mx-article { max-width: 720px; margin: 0 auto; padding: 0 20px; }

::-webkit-scrollbar{width:4px}::-webkit-scrollbar-thumb{background:var(--teal-l);border-radius:4px}

/* 4. HEADER — spójny z homepage (style.css) */
body { padding-top: 80px; }
#hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .2s, border-color .2s, box-shadow .2s; }
#hdr.header-scroll { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: 0 2px 24px rgba(0,0,0,.07); }
#hdr .mx { display: flex; align-items: center; justify-content: space-between; height: 80px; }

/* utility classes z homepage używane w nagłówku */
.flex { display: flex; }
.aic { align-items: center; }
.jcb { justify-content: space-between; }
.gap2 { gap: 8px; }
.gap4 { gap: 16px; }
.gap6 { gap: 24px; }
.border { border: 1px solid var(--border); }
.pill { border-radius: 999px; }
.px4 { padding-left: 16px; padding-right: 16px; }
.py2 { padding-top: 8px; padding-bottom: 8px; }
.c-m { color: var(--muted); }
.fs10 { font-size: 10px; }
.fs13 { font-size: 13px; }
.fw5 { font-weight: 500; }
.fw6 { font-weight: 600; }
.trans { transition: color .2s ease; }

.badge-google { padding: .3rem .75rem !important; transition: border-color .2s; }
.badge-google:hover { border-color: #aaa; }
.badge-google-text { color: var(--muted); font-size: 10px; font-weight: 600; }

#hdr nav { display: flex; align-items: center; gap: 24px; }
#hdr nav a { position: relative; padding-bottom: 2px; transition: color .2s ease; text-decoration: none; }
#hdr nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
#hdr nav a:hover { color: var(--teal); }
#hdr nav a:hover::after { transform: scaleX(1); }
#hdr nav a.active { color: var(--teal); font-weight: 600; }

#hdr .btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; border-radius: var(--radius); transition: background .2s, box-shadow .2s, transform .15s ease; text-decoration: none; }
#hdr .btn-teal { background: var(--teal); color: #fff; box-shadow: 0 1px 3px rgba(15,118,110,.2), inset 0 1px 0 rgba(255,255,255,.08); }
#hdr .btn-teal:hover { background: #115e59; box-shadow: 0 6px 20px rgba(15,118,110,.28); transform: translateY(-1px); text-decoration: none; }
#hdr .btn-sm { padding: 8px 20px; font-size: 13px; border-radius: 8px; }

@media(max-width:767px) { .md-hide { display: none !important; } }
@media(min-width:768px) { .md-up-hide { display: none !important; } }
@media(max-width:639px) { .badge-google { padding-left: 8px !important; padding-right: 8px !important; gap: 6px; } .badge-google-text { letter-spacing: 0 !important; white-space: nowrap; font-size: 10px !important; } }

.nav-ov-close{position:absolute;top:20px;right:24px;width:44px;height:44px;border-radius:50%;background:var(--gray-100);color:var(--ink);font-size:20px;display:flex;align-items:center;justify-content:center;cursor:pointer;border:1px solid var(--border);transition:background .2s}
.nav-ov-close:hover{background:#d1d5db}

/* 5. NAV HAMBURGER */
#nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; padding: 0; flex-shrink: 0; margin-left: 8px; }
#nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
#nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
#nav-overlay { position: fixed; inset: 0; z-index: 49; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); display: flex; flex-direction: column; padding: 88px 28px 40px; opacity: 0; transform: translateY(-18px); transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1); pointer-events: none; overflow-y: auto; }
#nav-overlay.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-ov-link { display: flex; align-items: center; justify-content: space-between; font-size: 1.5rem; font-weight: 600; color: var(--ink); padding: 18px 0; border-bottom: 1px solid var(--border); opacity: 0; transform: translateY(18px); transition: color .2s ease, opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1); text-decoration: none; }
.nav-ov-link::after { content: '→'; font-size: 1rem; color: var(--teal); opacity: 0; transform: translateX(-6px); transition: opacity .2s ease, transform .2s ease; }
.nav-ov-link:hover { color: var(--teal); text-decoration: none; }
.nav-ov-link:hover::after { opacity: 1; transform: translateX(0); }
.nav-ov-link.active { color: var(--teal); }
.nav-ov-cta { display: block; margin-top: 36px; background: var(--teal); color: #fff; text-align: center; padding: 18px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; opacity: 0; transform: translateY(18px); transition: background .2s, opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1); text-decoration: none; }
.nav-ov-cta:hover { background: #115e59; text-decoration: none; }
#nav-overlay.open .nav-ov-link, #nav-overlay.open .nav-ov-cta { opacity: 1; transform: translateY(0); }
#nav-overlay.open .nav-ov-link:nth-child(2) { transition-delay: .06s; }
#nav-overlay.open .nav-ov-link:nth-child(3) { transition-delay: .12s; }
#nav-overlay.open .nav-ov-link:nth-child(4) { transition-delay: .18s; }
#nav-overlay.open .nav-ov-link:nth-child(5) { transition-delay: .24s; }
#nav-overlay.open .nav-ov-link:nth-child(6) { transition-delay: .30s; }
#nav-overlay.open .nav-ov-link:nth-child(7) { transition-delay: .36s; }
#nav-overlay.open .nav-ov-link:nth-child(8) { transition-delay: .42s; }
#nav-overlay.open .nav-ov-cta { transition-delay: .48s; }
@media(min-width:768px) { #nav-toggle { display: none; } #nav-overlay { display: none; } }

/* 6. ARTICLE LAYOUT */
.article-header { padding: 56px 0 40px; }
.article-body { padding-bottom: 24px; }
.article-body a, .faq-a a { color: #0f766e; text-decoration: underline; }
.article-body .btn-teal { color: #fff; }
.article-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin: 2rem 0 .75rem; line-height: 1.3; }
.article-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 1.5rem 0 .5rem; }
.article-body p { color: #374151; line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1rem; color: #374151; line-height: 1.75; }
.article-body li { margin-bottom: .35rem; }
.article-body strong { color: var(--ink); }

/* 7. COMPONENTS */

/* Callout */
.callout { background: var(--teal-bg); border-left: 3px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 1.5rem 0; }
.callout p { margin: 0; color: #134e4a; }
.callout-red { background: #fff5f5; border-left: 3px solid #ef4444; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 20px; margin: 1.25rem 0; }
.callout-red p { margin: 0; color: #7f1d1d; font-size: .95rem; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 1.5rem 0; }
.stat-box { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1.1; }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: opacity .2s; text-decoration: none; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { opacity: .9; text-decoration: none; }

/* CTA box */
.cta-box { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; text-align: center; margin: 2.5rem 0; }

/* Breadcrumb */
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

/* Author bar */
.author-bar { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; }

/* 8. FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 24px 0; font-size: .8rem; color: var(--muted); }

.footer { border-top: 1px solid var(--border); padding-top: 64px; padding-bottom: 32px; background: var(--gray-50); }
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.3fr; gap: 40px; }
.footer-brand-line { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-line img { opacity: .7; }
.footer-brand-name { color: var(--ink); font-weight: 700; font-size: 16px; line-height: 1.1; margin-bottom: 4px; }
.footer-brand-sub { color: var(--muted); font-size: 12px; line-height: 1.4; }
.footer-brand-desc { color: var(--muted); font-size: 13px; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-link { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 500; background: #fff; text-decoration: none; transition: border-color .2s, color .2s, transform .15s; }
.footer-social-link:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); text-decoration: none; }
.footer-col-title { color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin: 0 0 16px; }
.footer-col-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col-list a { color: var(--muted); font-size: 13px; line-height: 1.4; text-decoration: none; transition: color .2s; }
.footer-col-list a:hover { color: var(--teal); text-decoration: none; }
.footer-col-list--space { margin-bottom: 28px; }
.footer-col-contact { display: flex; flex-direction: column; gap: 0; }
.footer-contact-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; text-decoration: none; transition: border-color .2s, transform .15s, box-shadow .2s; }
.footer-contact-card:hover { border-color: var(--teal); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.04); text-decoration: none; }
.footer-contact-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--teal-bg); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.footer-contact-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer-contact-text strong { color: var(--ink); font-weight: 600; font-size: 13px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.footer-contact-text span { color: var(--muted); font-size: 11px; line-height: 1.2; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.footer-bottom-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom-meta address { font-style: normal; display: inline; }
.footer-divider { color: #d1d5db; }
.footer-bottom-link { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-bottom-link:hover { color: var(--teal); text-decoration: none; }
@media(max-width:1023px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; } .footer-brand { grid-column: 1/-1; max-width: 480px; } }
@media(max-width:639px) { .footer { padding-top: 40px; } .footer-inner { gap: 32px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; } .footer-brand-desc { max-width: none; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; } .footer-bottom-meta { gap: 8px; } footer.pb-safe { padding-bottom: 24px; } }
@media(max-width:419px) { .footer-grid { grid-template-columns: 1fr; } }

/* 9. FAQ */
.faq-block { margin: 1.5rem 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; color: var(--ink); margin-bottom: .4rem; font-size: .95rem; }
.faq-a { color: #374151; font-size: .9rem; line-height: 1.7; margin: 0; }

/* 10. RELATED ARTICLES */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 1rem 0; }
.related-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; font-size: .85rem; color: var(--ink); display: block; transition: box-shadow .2s; }
.related-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.07); text-decoration: none; }
.related-tag { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: .3rem; }

/* 11. ARTICLE NAVIGATION */
/* nav mobile — inline pod breadcrumbem */
.post-nav { display: none; }
@media(max-width:960px) {
  .post-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; gap: 8px; }
  .anav-m { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px 3px 6px; border: 1px solid var(--border); border-radius: 16px; text-decoration: none; transition: border-color .2s; color: var(--ink); max-width: 48%; }
  .anav-m:hover { border-color: var(--teal); color: var(--teal); }
  .anav-m-next { flex-direction: row-reverse; padding: 3px 6px 3px 8px; }
  .anav-m-arrow { color: var(--teal); flex-shrink: 0; display: flex; align-items: center; }
  .anav-m-title { font-size: .72rem; font-weight: 600; color: inherit; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
/* nav desktop — fixed po bokach, hover-expand */
.anav { position: fixed; top: 50vh; transform: translateY(-50%); z-index: 40; display: flex; align-items: center; background: rgba(255,255,255,.97); border: 1px solid var(--border); border-radius: 32px; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: box-shadow .25s, border-color .25s; text-decoration: none; overflow: hidden; }
.anav:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,0,0,.14); }
.anav-arrow { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.anav-info { max-width: 0; overflow: hidden; transition: max-width .35s ease; white-space: nowrap; padding: 0; }
.anav:hover .anav-info { max-width: 210px; }
.anav-label { font-size: .63rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); display: block; line-height: 1; }
.anav-title { font-size: .75rem; font-weight: 700; color: var(--ink); line-height: 1.3; display: block; margin-top: 2px; }
.anav-prev { right: max(8px, calc(50vw + 380px)); }
.anav-prev:hover .anav-info { padding: 10px 2px 10px 14px; }
.anav-next { left: max(8px, calc(50vw + 380px)); }
.anav-next:hover .anav-info { padding: 10px 14px 10px 2px; }
@media(max-width:960px) { .anav { display: none; } }

/* 12. FLOATING BUTTONS */
.lokal-wa, .lokal-fb { position: fixed; right: 24px; z-index: 900; width: 52px; height: 52px; background: #0f766e; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.lokal-fb { bottom: 24px; }
.lokal-wa { bottom: 88px; }
.lokal-wa:hover, .lokal-fb:hover { background: #115e59; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); text-decoration: none; }
.lokal-wa-tip, .lokal-fb-tip { position: absolute; right: 60px; background: #111827; color: #fff; font-size: .78rem; white-space: nowrap; padding: 6px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .2s; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.lokal-wa-tip::after, .lokal-fb-tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-right: none; border-left-color: #111827; }
.lokal-wa:hover .lokal-wa-tip, .lokal-fb:hover .lokal-fb-tip { opacity: 1; }
@media(max-width:930px) { .lokal-wa, .lokal-fb { display: none; } }

/* 13. BLOG BAR (mobile CTA bar) */
.blog-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; display: flex; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid #e5e7eb; }
.blog-bar-phone { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: #f0fdfa; border: 1px solid #99f6e4; border-radius: 10px; flex-shrink: 0; text-decoration: none; }
.blog-bar-cta { flex: 1; display: flex; align-items: center; justify-content: center; background: #0f766e; color: #fff; font-weight: 600; font-size: 14px; border-radius: 10px; height: 44px; text-decoration: none; }
.blog-bar-cta:hover { background: #115e59; }
@media(min-width:768px) { .blog-bar { display: none; } }

/* Cookie consent */
#lokal-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: #fff; border-top: 1px solid #e5e7eb; box-shadow: 0 -4px 24px rgba(0,0,0,.08); transform: translateY(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
#lokal-cookie.lokal-visible { transform: translateY(0); }
#lokal-cookie.lokal-hiding { transform: translateY(100%); }
.lokal-cookie-inner { max-width: 1160px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lokal-cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 0; }
.lokal-cookie-icon { font-size: 1.25rem; line-height: 1.6; flex-shrink: 0; }
.lokal-cookie-text p { margin: 0; font-size: .875rem; color: #374151; line-height: 1.6; }
.lokal-cookie-text a { color: #0f766e; text-decoration: underline; }
.lokal-cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.lokal-cookie-btns button { padding: 9px 20px; border-radius: 8px; border: none; cursor: pointer; font-size: .875rem; font-weight: 600; line-height: 1; white-space: nowrap; transition: opacity .15s, background .15s, color .15s; }
#lokal-reject { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
#lokal-reject:hover { background: #e5e7eb; color: #374151; }
#lokal-accept { background: #0f766e; color: #fff; }
#lokal-accept:hover { opacity: .88; }

/* 15. HERO IMAGE */
.hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-xl); margin: 1.5rem 0; }

/* 16. COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.compare-table th { padding: 10px 14px; text-align: left; font-weight: 600; border-bottom: 2px solid var(--border); }
.compare-table th:nth-child(2) { color: var(--muted); }
.compare-table th:nth-child(3) { color: var(--teal); }
.compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }

/* 17. PRICE TABLE */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.price-table th { background: var(--teal); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.price-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--gray-50); }
.price-table .featured td { background: #f0fdfa; font-weight: 500; }

/* 18. RANK FACTOR */
.rank-factor { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.rank-factor:last-child { border-bottom: none; }
.rank-num { width: 32px; height: 32px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* 14. MEDIA QUERIES */
@media(max-width:767px) { body { padding-bottom: 72px; } }
@media(max-width:600px) {
  .article-header { padding: 32px 0 24px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
  .price-table { font-size: .85rem; }
  .price-table th, .price-table td { padding: 8px 10px; }
  .lokal-cookie-inner { flex-direction: column; padding: 14px 16px; }
  .lokal-cookie-btns { width: 100%; }
  .lokal-cookie-btns button { flex: 1; padding: 11px; }
}
