/* Ollas Inteligentes – CSS v3 (professional affiliate site) */
:root {
  --pri: #047857;
  --pri-dk: #065f46;
  --pri-lt: #ecfdf5;
  --accent: #d97706;
  --accent-dk: #b45309;
  --bg: #f8fafc;
  --card: #ffffff;
  --txt: #0f172a;
  --txt-2: #475569;
  --txt-3: #64748b;
  --border: #e2e8f0;
  --pro: #15803d;
  --con: #b91c1c;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 6px 16px rgba(0,0,0,.04);
  --shadow-lg: 0 4px 12px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.06);
  --max-w: 1200px;
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: var(--font); color: var(--txt); background: var(--bg); line-height: 1.75; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pri); text-decoration: none; transition: color .2s, background .2s; }
a:hover { color: var(--pri-dk); }
h1, h2, h3, h4 { line-height: 1.3; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--txt); color: #fff; padding: .5rem .75rem; z-index: 200; border-radius: 0 0 6px 6px; }
.skip-link:focus { top: 0; color: #fff; }

/* ─── HEADER ─── */
.site-header { background: var(--card); border-bottom: 3px solid var(--pri); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; gap: 1rem; }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--pri); display: flex; align-items: center; gap: .5rem; white-space: nowrap; flex-shrink: 0; letter-spacing: -.01em; }
.logo:hover { color: var(--pri-dk); }
.logo-icon { font-size: 1.6rem; }
.menu-toggle { display: none; background: var(--pri); border: none; color: #fff; font-size: 1.4rem; border-radius: var(--radius-sm); padding: .35rem .65rem; cursor: pointer; transition: background .2s; }
.menu-toggle:hover { background: var(--pri-dk); }
.nav-main { overflow: hidden; }
.nav-main ul { list-style: none; display: flex; flex-wrap: wrap; gap: .15rem; }
.nav-main a { padding: .45rem .75rem; border-radius: var(--radius-sm); font-size: .85rem; font-weight: 500; white-space: nowrap; color: var(--txt); transition: background .2s, color .2s; }
.nav-main a:hover { background: var(--pri); color: #fff; }
.affiliate-banner { max-width: var(--max-w); margin: 0 auto; padding: .5rem 1.25rem; border-top: 1px solid var(--border); color: var(--txt-2); font-size: .78rem; line-height: 1.45; background: var(--pri-lt); }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-main { display: none; width: 100%; }
  .nav-main.open { display: block; background: var(--card); border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .5rem; }
  .nav-main ul { flex-direction: column; gap: 0; }
  .nav-main a { display: block; padding: .7rem 1rem; border-radius: 0; border-bottom: 1px solid #f1f5f9; }
  .header-inner { flex-wrap: wrap; }
}

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, var(--pri) 0%, var(--pri-dk) 100%); color: #fff; padding: 3.5rem 1.25rem 3rem; text-align: center; position: relative; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--pri), var(--accent)); }
.hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.8rem); margin-bottom: .85rem; font-weight: 800; letter-spacing: -.02em; text-shadow: 0 2px 4px rgba(0,0,0,.15); }
.hero-sub { font-size: 1.1rem; opacity: .92; max-width: 720px; margin: 0 auto 1.5rem; }
.hero .btn-cta { background: var(--accent); font-size: 1.05rem; padding: .85rem 2rem; box-shadow: 0 4px 12px rgba(217,119,6,.3); }

/* ─── SECTIONS ─── */
.section { padding: 3.5rem 0; }
.section-alt { background: #fff; }
.section-title { font-size: 1.6rem; font-weight: 800; color: var(--txt); margin-bottom: .5rem; letter-spacing: -.01em; }
.section-intro { font-size: 1.05rem; color: var(--txt-2); margin-bottom: 2rem; max-width: 800px; }
.seo-intro { font-size: 1rem; color: var(--txt-2); margin-bottom: 2rem; line-height: 1.7; background: var(--pri-lt); padding: 1.5rem; border-radius: var(--radius); border-left: 4px solid var(--pri); }

/* ─── CATEGORY GRID ─── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.cat-card { background: var(--card); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; align-items: center; color: var(--txt); min-width: 0; border: 2px solid transparent; position: relative; overflow: hidden; }
.cat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--pri); transform: scaleX(0); transition: transform .3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--txt); border-color: var(--pri); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-icon { font-size: 2.8rem; margin-bottom: .85rem; filter: drop-shadow(0 2px 3px rgba(0,0,0,.1)); }
.cat-card h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--pri-dk); font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
.cat-card p { font-size: .83rem; color: var(--txt-3); }
.cat-card-arrow { display: inline-block; margin-top: .75rem; font-size: .85rem; color: var(--pri); font-weight: 600; transition: transform .2s; }
.cat-card:hover .cat-card-arrow { transform: translateX(4px); }

/* ─── BUTTONS ─── */
.btn-cta { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; padding: .75rem 1.5rem; border-radius: var(--radius-sm); text-align: center; transition: background .2s, transform .15s, box-shadow .2s; font-size: .95rem; letter-spacing: .01em; border: none; cursor: pointer; }
.btn-cta:hover { background: var(--accent-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(217,119,6,.25); }
.btn-cta:active { transform: translateY(0); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; border-radius: 10px; }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: .45rem .9rem; font-size: .82rem; }
.btn-sec { display: inline-block; border: 2px solid var(--pri); color: var(--pri); padding: .55rem 1.15rem; border-radius: var(--radius-sm); text-align: center; font-size: .88rem; font-weight: 600; transition: background .2s, color .2s, transform .15s; }
.btn-sec:hover { background: var(--pri); color: #fff; transform: translateY(-1px); }

/* ─── PRODUCT GRID & CARDS ─── */
.product-grid, .prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.prod-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; min-width: 0; transition: transform .25s, box-shadow .25s; border: 1px solid var(--border); }
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.img-box { aspect-ratio: 4/3; background: #fff; display: flex; align-items: center; justify-content: center; padding: 1rem; overflow: hidden; position: relative; max-height: 280px; }
.img-box img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-sm); }
.prod-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; min-width: 0; }
.prod-card-body h3 { font-size: 1rem; line-height: 1.4; font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
.prod-card-body h3 a { color: var(--txt); }
.prod-card-body h3 a:hover { color: var(--pri); }
.prod-meta { font-size: .85rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.review-count { color: var(--txt-3); font-size: .8rem; }
.prod-price { font-size: 1.4rem; font-weight: 800; color: var(--pri-dk); }
.price-disclaimer { font-size: .72rem; color: var(--txt-3); font-style: italic; }
.prod-excerpt { font-size: .85rem; color: var(--txt-2); line-height: 1.55; word-wrap: break-word; overflow-wrap: break-word; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto; padding-top: .5rem; }

/* ─── PRODUCT DETAIL ─── */
.product-detail { padding: 2rem 0; }
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2.5rem; }
.product-img-col { min-width: 0; }
.product-detail .img-box { aspect-ratio: 1/1; max-height: 400px; }
.product-info-col { min-width: 0; }
.product-info-col h1 { font-size: 1.6rem; margin-bottom: .85rem; line-height: 1.3; font-weight: 800; word-wrap: break-word; overflow-wrap: break-word; }
.prod-meta-lg { margin-bottom: .5rem; font-size: 1rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.prod-price-lg { font-size: 2.2rem; font-weight: 800; color: var(--pri-dk); margin-bottom: .5rem; line-height: 1.2; }
.price-note { display: block; font-size: .8rem; font-weight: 400; color: var(--txt-3); margin-top: .15rem; }
.affiliate-note { font-size: .75rem; color: #94a3b8; margin-top: .5rem; }
.product-data-note { color: var(--txt-2); font-size: .82rem; line-height: 1.45; }
.product-data-note-lg { margin: 0 0 1rem; padding: .75rem 1rem; background: #f1f5f9; border-left: 3px solid var(--pri); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.product-section { margin-bottom: 2.5rem; }
.product-section h2 { font-size: 1.35rem; margin-bottom: 1rem; color: var(--pri-dk); border-bottom: 3px solid var(--pri); padding-bottom: .5rem; font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
.product-section h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.product-section p { margin-bottom: .75rem; color: var(--txt-2); }

/* Ficha Técnica */
.ficha-tecnica { background: var(--pri-lt); border-radius: var(--radius); padding: 1.25rem; margin: 1.5rem 0; }
.ficha-tecnica h3 { font-size: 1rem; color: var(--pri-dk); margin-bottom: .75rem; }
.ficha-tecnica table { width: 100%; border-collapse: collapse; }
.ficha-tecnica td { padding: .5rem .75rem; font-size: .9rem; border-bottom: 1px solid rgba(4,120,87,.12); }
.ficha-tecnica td:first-child { font-weight: 600; color: var(--txt); width: 45%; }
.ficha-tecnica td:last-child { color: var(--txt-2); }
.ficha-disclaimer { font-size: .75rem; color: var(--txt-3); margin-top: .75rem; font-style: italic; }

/* Pros & Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-box, .cons-box { padding: 1.5rem; border-radius: var(--radius); min-width: 0; }
.pros-box { background: #f0fdf4; border-left: 4px solid var(--pro); }
.cons-box { background: #fef2f2; border-left: 4px solid var(--con); }
.pros-box h3 { color: var(--pro); margin-bottom: .85rem; font-size: 1.05rem; }
.cons-box h3 { color: var(--con); margin-bottom: .85rem; font-size: 1.05rem; }
.pros-box ul, .cons-box ul { list-style: none; }
.pro-item, .con-item { padding: .45rem 0; font-size: .92rem; line-height: 1.55; display: flex; gap: .5rem; }
.pro-item .check { color: var(--pro); font-weight: 700; flex-shrink: 0; }
.con-item .cross { color: var(--con); font-weight: 700; flex-shrink: 0; }
.pro-item { color: #166534; }
.con-item { color: #991b1b; }

/* CTA section */
.cta-section { text-align: center; padding: 2.5rem 2rem; background: linear-gradient(135deg, var(--pri-lt), #d1fae5); border-radius: var(--radius); border: 1px solid rgba(4,120,87,.15); }
.cta-section h3 { font-size: 1.2rem; margin-bottom: .75rem; color: var(--pri-dk); }

/* Related grid */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.related-prod { background: var(--card); padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); min-width: 0; word-wrap: break-word; overflow-wrap: break-word; transition: border-color .2s, box-shadow .2s; }
.related-prod:hover { border-color: var(--pri); box-shadow: 0 2px 8px rgba(4,120,87,.1); }
.related-prod h4 { font-size: .95rem; margin-bottom: .4rem; }
.related-prod h4 a { color: var(--txt); }
.related-prod h4 a:hover { color: var(--pri); }
.related-prod-meta { font-size: .85rem; color: var(--txt-2); margin-bottom: .6rem; }
.related-prod-actions { display: flex; gap: .4rem; flex-wrap: wrap; }

/* Related Box (blog / category interlinking) */
.related-box { background: var(--card); border: 2px solid var(--pri); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; display: flex; gap: 1rem; align-items: flex-start; }
.related-box-icon { font-size: 2rem; flex-shrink: 0; }
.related-box-content { flex: 1; min-width: 0; }
.related-box h3 { margin-bottom: .4rem; font-size: 1.05rem; color: var(--pri-dk); }
.related-box p { font-size: .9rem; color: var(--txt-2); margin-bottom: .75rem; }

.back-link { margin: 2.5rem 0; }

/* ─── COMPARISON TABLE ─── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.comp-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 650px; }
.comp-table th { background: linear-gradient(135deg, var(--pri-dk), var(--pri)); color: #fff; font-weight: 600; padding: .85rem 1rem; text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.comp-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.comp-table tbody tr { transition: background .15s; }
.comp-table tbody tr:nth-child(even) { background: #f8fafc; }
.comp-table tbody tr:hover { background: var(--pri-lt); }
.td-thumb img { width: 60px; height: 60px; border-radius: 10px; object-fit: contain; background: #f1f5f9; display: block; }
.td-model { font-weight: 600; }
.td-model a { color: var(--pri-dk); }
.td-model a:hover { color: var(--pri); text-decoration: underline; }
.td-rating { white-space: nowrap; }
.td-rating .stars { color: var(--accent); font-size: 1.1rem; }
.td-price { color: var(--txt-2); white-space: nowrap; font-weight: 500; }
.td-action .btn-cta { white-space: nowrap; }
.table-disclaimer { font-size: .78rem; color: var(--txt-3); margin-top: .75rem; font-style: italic; }

/* ─── BREADCRUMB ─── */
.breadcrumb { font-size: .85rem; color: var(--txt-3); padding: 1.25rem 0; word-wrap: break-word; overflow-wrap: break-word; }
.breadcrumb a { color: var(--pri); font-weight: 500; }

/* ─── FAQ ─── */
.faq-section { margin-top: 3rem; }
.faq-section h2 { margin-bottom: 1.5rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .75rem; transition: border-color .2s; }
.faq-item:hover { border-color: var(--pri); }
.faq-item summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: .95rem; list-style: none; color: var(--txt); }
.faq-item summary::before { content: '▸ '; color: var(--pri); }
.faq-item[open] summary::before { content: '▾ '; }
.faq-item[open] { border-color: var(--pri); background: var(--pri-lt); }
.faq-item p { padding: 0 1.25rem 1rem; color: var(--txt-2); line-height: 1.65; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.blog-card { background: var(--card); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); display: block; color: var(--txt); transition: transform .25s, box-shadow .25s; min-width: 0; border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--txt); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--pri-dk); font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
.blog-card p { font-size: .88rem; color: var(--txt-2); margin-bottom: .75rem; }
.read-more { color: var(--accent); font-weight: 700; font-size: .88rem; }
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-entry { background: var(--card); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: border-color .2s; }
.blog-entry:hover { border-color: var(--pri); }
.blog-entry h2 { font-size: 1.2rem; margin-bottom: .75rem; }
.blog-entry h2 a { color: var(--pri-dk); }
.blog-entry p { color: var(--txt-2); margin-bottom: .75rem; }

/* Blog Article */
.blog-article { max-width: 800px; margin: 0 auto; padding: 2rem 0; }
.blog-article h1 { font-size: 1.9rem; margin-bottom: 1.5rem; line-height: 1.3; font-weight: 800; }
.blog-article h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; color: var(--pri-dk); border-bottom: 2px solid var(--pri); padding-bottom: .4rem; }
.blog-article h3 { font-size: 1.1rem; margin: 1.5rem 0 .75rem; color: var(--txt); }
.blog-article p { margin-bottom: 1rem; color: var(--txt-2); }
.blog-article .table-wrap { border-radius: var(--radius); border: 1px solid var(--border); }
.blog-article table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.blog-article th, .blog-article td { padding: .65rem .85rem; text-align: left; border-bottom: 1px solid var(--border); }
.blog-article th { background: var(--pri); color: #fff; font-weight: 600; }
.blog-article tr:nth-child(even) { background: #f8fafc; }
.article-links { background: var(--pri-lt); border-radius: var(--radius); padding: 1.75rem; margin: 2rem 0; border: 1px solid rgba(4,120,87,.15); }
.article-links h3 { margin-bottom: 1rem; color: var(--pri-dk); font-size: 1.1rem; }
.interlink-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-products { margin: 2.5rem 0; }
.blog-products h2 { font-size: 1.3rem; color: var(--pri-dk); border-bottom: 2px solid var(--pri); padding-bottom: .4rem; margin-bottom: .75rem; }
.blog-products p { color: var(--txt-2); margin-bottom: 1.25rem; }
.blog-cat-links { margin-top: 1.5rem; display: flex; gap: .5rem; flex-wrap: wrap; }

/* ─── STARS ─── */
.stars { font-size: 1rem; letter-spacing: 1px; }

/* ─── LEGAL ─── */
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { color: var(--pri-dk); border-bottom: 3px solid var(--pri); padding-bottom: .5rem; margin-bottom: 1rem; }
.legal-section h3 { margin: 1.5rem 0 .75rem; color: var(--txt); }
.legal-section p { margin-bottom: .75rem; color: var(--txt-2); }

/* ─── FOOTER ─── */
.site-footer { background: linear-gradient(180deg, var(--pri-dk) 0%, #064e3b 100%); color: #d1fae5; padding: 3.5rem 0 1.5rem; margin-top: 3.5rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: #fff; margin-bottom: .85rem; font-size: 1.05rem; font-weight: 700; }
.footer-col p { font-size: .85rem; line-height: 1.65; opacity: .85; }
.footer-col ul { list-style: none; }
.footer-col li { padding: .25rem 0; }
.footer-col a { color: #a7f3d0; font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem; text-align: center; font-size: .8rem; opacity: .7; }

/* ─── AMAZON CTA BOX (categories) ─── */
.amazon-cta-box { text-align: center; padding: 2.5rem 2rem; background: linear-gradient(135deg, #fffbeb, #fef3c7); border-radius: var(--radius); border: 2px solid var(--accent); margin: 2rem 0; }
.amazon-cta-box h3 { font-size: 1.15rem; color: var(--accent-dk); margin-bottom: .5rem; }
.amazon-cta-box p { color: var(--txt-2); margin-bottom: 1rem; font-size: .92rem; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; }
  .prod-grid, .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-box { flex-direction: column; text-align: center; }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 600px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero h1 { font-size: 1.5rem; }
  .prod-grid, .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .prod-price-lg { font-size: 1.6rem; }
  .related-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .container { padding: 0 .85rem; }
  .btn-cta { display: block; width: 100%; }
  .btn-sec { display: block; width: 100%; text-align: center; }
  .cta-section { padding: 1.5rem 1rem; }
  .amazon-cta-box { padding: 1.5rem 1rem; }
  .product-info-col h1 { font-size: 1.3rem; }
  .blog-article h1 { font-size: 1.4rem; }
  .interlink-grid { flex-direction: column; }
  .comp-table { min-width: 500px; }
  .cat-grid { gap: .75rem; }
  .cat-card { padding: 1.25rem .75rem; }
  .cat-card-icon { font-size: 2rem; }
}

@media (max-width: 380px) {
  .cat-grid { grid-template-columns: 1fr; }
}
