/* ═══════════════════════════════════════════════════════════════════════════
   Abenteuerschnorcheln.de – Shared Stylesheet v3
   Design: Ocean Teal – frisch, modern, jung
   Farben: Primär #0077b6 · CTA coral #e55a2b · Bg #f0f7ff
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Base Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a; background: #f0f7ff; line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0077b6; text-decoration: none; transition: color .15s; }
a:hover { color: #005f8a; text-decoration: underline; }

/* ─── Wrappers ────────────────────────────────────────────────────────────── */
.wrap { max-width: 780px; margin: 0 auto; padding: 0 16px; }
.sw   { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* ─── Page grid: main + sidebar ──────────────────────────────────────────── */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  padding: 24px 0 48px;
}
@media (max-width: 800px) {
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

/* ─── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { padding: 12px 0; font-size: 13px; color: #777; }
.breadcrumb a { color: #0077b6; }
.breadcrumb span + span::before { content: ' › '; color: #bbb; }

/* ─── Hero Image ──────────────────────────────────────────────────────────── */
.hero {
  width: 100%; max-height: 420px; overflow: hidden;
  border-radius: 14px; margin: 4px 0 24px; position: relative;
  box-shadow: 0 8px 32px rgba(0, 119, 182, .18);
}
.hero-img {
  width: 100%; height: 380px; object-fit: cover; object-position: center 55%; display: block;
  transition: transform .4s ease;
}
.hero:hover .hero-img { transform: scale(1.01); }
.hero-caption {
  position: absolute; bottom: 0; right: 0;
  background: rgba(0,0,0,.45); padding: 3px 8px;
  font-size: 11px; color: rgba(255,255,255,.8); border-radius: 4px 0 0 0;
}
@media (max-width: 540px) { .hero-img { height: 220px; } }

/* ─── Article Header ──────────────────────────────────────────────────────── */
.article-header { padding: 20px 0 16px; }
.article-meta {
  font-size: 13px; color: #888; margin-bottom: 12px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.article-meta .tag {
  background: #dbeafe; color: #1e40af;
  padding: 3px 10px; border-radius: 20px; font-weight: 600; font-size: 12px;
}
.article-h1 { font-size: clamp(22px,5vw,32px); font-weight: 800; line-height: 1.25; color: #0a2a4a; margin-bottom: 16px; }
.article-intro { font-size: 17px; color: #444; line-height: 1.7; margin-bottom: 20px; }

/* ─── Intro Box ───────────────────────────────────────────────────────────── */
.intro-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-left: 4px solid #0096c7;
  border-radius: 0 10px 10px 0; padding: 14px 18px;
  font-size: 15px; color: #1e3a5f; margin: 0 0 24px; line-height: 1.65;
}

/* ─── Article Content (from WP) ──────────────────────────────────────────── */
.article-content { margin-bottom: 36px; }
.article-content p  { margin-bottom: 14px; font-size: 15px; color: #333; line-height: 1.7; }
.article-content ul { padding-left: 22px; margin-bottom: 14px; }
.article-content li { font-size: 15px; color: #333; margin-bottom: 5px; line-height: 1.6; }
.article-content strong { color: #111; }

/* ─── Section Headings ────────────────────────────────────────────────────── */
.section-h2 {
  font-size: 22px; font-weight: 800; margin: 36px 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid #dbeafe;
  color: #0a2a4a;
}
.section-h2 small { font-size: 14px; font-weight: 400; color: #888; margin-left: 8px; }
.section-h3 { font-size: 17px; font-weight: 700; margin: 20px 0 10px; color: #0077b6; }

/* ─── Quick Comparison Table ──────────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; margin-bottom: 28px; box-shadow: 0 4px 16px rgba(0,119,182,.1); }
.compare-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: 12px; overflow: hidden; border: 1px solid #dbeafe; min-width: 460px;
}
.compare-table th {
  background: #0077b6 !important;
  color: #fff !important; padding: 12px 14px; border: none !important;
  text-align: left; font-size: 13px; white-space: nowrap; letter-spacing: .3px;
}
.compare-table td { padding: 12px 14px; font-size: 14px; border-bottom: 1px solid #f0f7ff; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.winner td { background: #e0f2fe; }
.compare-table tr:nth-child(even) td { background: #f9fbff; }
.compare-table tr.winner:nth-child(even) td { background: #d4edfc; }
.compare-table tr { transition: background .15s; }
.compare-table tr:hover td { background: #f0f7ff !important; }
.compare-table .rank  { font-size: 18px; line-height: 1; }
.compare-table .name  { font-weight: 700; color: #111; }
.compare-table .name small { display: block; font-weight: 400; color: #888; font-size: 12px; margin-top: 1px; }
.compare-table .stars { color: #f59e0b; font-size: 15px; letter-spacing: -1px; }
.price-loading { color: #bbb; font-size: 14px; }

.btn-buy-sm {
  display: inline-block; background: #e55a2b; color: #fff;
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700;
  white-space: nowrap; transition: background .15s, transform .15s;
}
.btn-buy-sm:hover { background: #c44a20; text-decoration: none; transform: translateY(-1px); }

/* ─── Rank num badges ─────────────────────────────────────────────────────── */
.rank-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; font-weight: 900; font-size: 13px;
}
.rank-num-1 { background: linear-gradient(135deg,#c8a000,#f0d060); color: #5a3a00; box-shadow: 0 2px 8px rgba(180,130,0,.4); }
.rank-num-2 { background: linear-gradient(135deg,#8a9bb0,#bdc8d8); color: #2a3a4a; box-shadow: 0 2px 6px rgba(100,120,150,.35); }
.rank-num-3 { background: linear-gradient(135deg,#a06030,#c88040); color: #fff; box-shadow: 0 2px 6px rgba(140,80,20,.35); }

/* ─── Product Card ────────────────────────────────────────────────────────── */
.produkt {
  margin-bottom: 32px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,119,182,.12);
  transition: box-shadow .2s, transform .2s;
}
.produkt:hover { box-shadow: 0 8px 32px rgba(0,119,182,.2); transform: translateY(-2px); }

.rank-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; font-weight: 700; font-size: 15px; color: #fff;
}
.rang-1 .rank-banner { background: linear-gradient(135deg,#005f8a 0%,#0096c7 100%); }
.rang-2 .rank-banner { background: linear-gradient(135deg,#0a3d62 0%,#1565a0 100%); }
.rang-3 .rank-banner { background: linear-gradient(135deg,#7a4a1a 0%,#b06a28 100%); }
.rank-banner .badge {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  background: rgba(255,255,255,.25); box-shadow: 0 0 0 2px rgba(255,255,255,.45);
}
.rank-banner .label { flex: 1; }
.rank-banner .score-pill {
  background: rgba(255,255,255,.22); border-radius: 20px;
  padding: 3px 12px; font-size: 13px; white-space: nowrap;
}

/* ─── Empfehlungsbox (inline product recommendation) ─────────────────────── */
.produkt-empfehlung { margin-bottom:28px; border-radius:14px; overflow:hidden; box-shadow:0 4px 20px rgba(0,119,182,.12); }
.produkt-header { background:linear-gradient(135deg,#005f8a 0%,#0096c7 100%); color:#fff; font-weight:700; font-size:15px; padding:12px 18px; }
.produkt-body { display:flex; align-items:center; gap:14px; background:#fff; padding:14px; border-bottom:1px solid #f0f7ff; }
.produkt-thumb { flex-shrink:0; }
.produkt-thumb img { width:90px; height:90px; object-fit:contain; border-radius:6px; background:#f0f7ff; }
.produkt-content { flex:1; }
.produkt-title { font-weight:700; font-size:15px; color:#0a2a4a; display:block; margin-bottom:8px; }
.produkt-desc { font-size:13px; color:#555; line-height:1.5; }
.produkt-footer { background:#f8fafc; padding:10px 14px; text-align:right; }

/* AAWP-style product box */
.aawp-box { display: flex; align-items: stretch; background: #fff; border-bottom: 1px solid #f0f7ff; }
.aawp-thumb {
  flex-shrink: 0; width: 150px; min-height: 150px;
  background: #f0f7ff; display: flex; align-items: center; justify-content: center; padding: 14px;
}
.aawp-thumb img { width: 120px; height: 120px; object-fit: contain; background: #f0f7ff; border-radius: 6px; }
.aawp-content { flex: 1; padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.aawp-title {
  font-size: 14px; font-weight: 700; color: #0077b6;
  display: block; margin-bottom: 8px; line-height: 1.4;
}
.aawp-title:hover { text-decoration: underline; color: #005f8a; }
.aawp-rating { font-size: 13px; color: #555; display: flex; align-items: center; gap: 6px; }
.aawp-stars   { color: #f59e0b; font-size: 15px; letter-spacing: -1px; }
.aawp-reviews { color: #888; font-size: 12px; }
.aawp-footer {
  padding: 14px; background: #fff; border-left: 1px solid #f0f7ff;
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: center; gap: 10px; min-width: 140px; flex-shrink: 0;
}
.aawp-price      { display: none; }
.aawp-list-price { font-size: 12px; color: #999; text-decoration: line-through; }
.aawp-savings    { font-size: 12px; color: #cc0000; font-weight: 600; }
.aawp-prime      { font-size: 11px; color: #0066c0; font-weight: 600; }
.btn-buy {
  display: inline-block; background: linear-gradient(135deg, #e55a2b, #f07040);
  color: #fff; padding: 10px 16px; border-radius: 24px;
  font-size: 13px; font-weight: 700; text-align: center; white-space: nowrap;
  transition: all .2s; box-shadow: 0 3px 10px rgba(229,90,43,.3);
}
.btn-buy:hover { background: linear-gradient(135deg, #c44a20, #e55a2b); text-decoration: none; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(229,90,43,.4); }

/* Produkt-Empfehlung Box */
.produkt-empfehlung {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  overflow: hidden; margin: 24px 0; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.produkt-header {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 16px; letter-spacing: .02em;
}
.produkt-body {
  display: flex; gap: 16px; padding: 16px; align-items: flex-start;
}
.produkt-thumb { flex-shrink: 0; }
.produkt-thumb img { border-radius: 6px; object-fit: contain; }
.produkt-content { flex: 1; min-width: 0; }
.produkt-title {
  display: block; font-size: 14px; font-weight: 700;
  color: #1e293b; line-height: 1.4; margin-bottom: 6px;
}
.produkt-title:hover { color: #0284c7; text-decoration: none; }
.produkt-desc { font-size: 13px; color: #475569; line-height: 1.5; }
.produkt-footer {
  padding: 12px 16px; border-top: 1px solid #f1f5f9;
  background: #fafafa; text-align: right;
}

/* Feature list */
.feature-list {
  background: #f0f9ff; border: 1px solid #bae6fd; border-top: none;
  padding: 12px 18px; list-style: none;
}
.feature-list li {
  padding: 4px 0; font-size: 14px; display: flex; gap: 9px; align-items: flex-start;
}
.feature-list li::before {
  content: ''; flex-shrink: 0; margin-top: 3px; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%230077b6'/%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-5' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* Pro/Con */
.procon { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid #f0f7ff; border-top: none; }
.procon-col { padding: 12px 16px; }
.procon-col.pro { border-right: 1px solid #f0f7ff; }
.procon-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.procon-title.pro { color: #0077b6; }
.procon-title.con { color: #cc4400; }
.procon ul { list-style: none; font-size: 13px; }
.procon li { display: flex; gap: 8px; padding: 3px 0; align-items: flex-start; }
.procon .pro ul li::before {
  content: ''; flex-shrink: 0; margin-top: 2px; width: 13px; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Ccircle cx='6.5' cy='6.5' r='6.5' fill='%23dbeafe'/%3E%3Cpath d='M3 6.5l2.5 2.5 4.5-4.5' stroke='%230077b6' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.procon .con ul li::before {
  content: ''; flex-shrink: 0; margin-top: 2px; width: 13px; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Ccircle cx='6.5' cy='6.5' r='6.5' fill='%23fff0ee'/%3E%3Cpath d='M4 6.5h5' stroke='%23cc4400' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* Ideal footer */
.ideal-footer {
  background: #f0f9ff; border: 1px solid #bae6fd; border-top: none;
  border-radius: 0 0 14px 14px; padding: 10px 16px;
  font-size: 13px; color: #555; display: flex; flex-wrap: wrap; gap: 10px;
}
.ideal-footer .fl { display: flex; align-items: center; gap: 6px; }
.ideal-label {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; padding: 3px 8px; border-radius: 20px; white-space: nowrap;
}
.ideal-label.blue  { background: #dbeafe; color: #1e40af; }
.ideal-label.amber { background: #fef3c7; color: #92400e; }

/* Product body text */
.product-body { font-size: 15px; color: #444; line-height: 1.7; margin: 12px 0 0; }

/* ─── Kaufberatung ────────────────────────────────────────────────────────── */
.kaufberatung {
  background: #fff; border-radius: 14px; padding: 24px;
  border: 1px solid #dbeafe; margin-bottom: 36px;
  box-shadow: 0 2px 12px rgba(0,119,182,.07);
}
.kaufberatung h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; color: #0a2a4a; }
.kaufberatung h3 { font-size: 16px; font-weight: 700; margin: 16px 0 8px; color: #0077b6; }
.kaufberatung p  { font-size: 15px; color: #444; margin-bottom: 12px; line-height: 1.7; }
.kaufberatung ul { padding-left: 20px; margin-bottom: 12px; }
.kaufberatung li { font-size: 15px; color: #444; margin-bottom: 4px; }
.kaufberatung table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.kaufberatung th { background: #e0f2fe !important; color: #0a2a4a !important; padding: 8px 12px; text-align: left; font-weight: 700; border: none !important; }
.kaufberatung td { padding: 8px 12px; border-bottom: 1px solid #f0f7ff; }
.kaufberatung tr:last-child td { border-bottom: none; }
.kaufberatung tr:nth-child(even) td { background: #f9fbff; }

/* ─── Reisezeit / generic data table ──────────────────────────────────────── */
.reisezeit-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; border-radius: 10px; overflow: hidden; }
.reisezeit-table th { background: #0077b6 !important; color: #fff !important; padding: 10px 14px; text-align: left; font-size: 13px; white-space: nowrap; border: none !important; }
.reisezeit-table td { padding: 10px 14px; border-bottom: 1px solid #f0f7ff; color: #333; }
.reisezeit-table tr:last-child td { border-bottom: none; }
.reisezeit-table tr:nth-child(even) td { background: #f9fbff; }

/* ─── FAQ (pure CSS accordion) ────────────────────────────────────────────── */
.faq { margin-bottom: 36px; }
.faq h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; color: #0a2a4a; }
details {
  background: #fff; border: 1px solid #dbeafe; border-radius: 10px;
  margin-bottom: 8px; overflow: hidden; transition: border-color .2s;
}
details[open] { border-color: #0077b6; box-shadow: 0 2px 12px rgba(0,119,182,.1); }
summary {
  padding: 14px 18px; font-size: 15px; font-weight: 600;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; color: #0a2a4a;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 20px; color: #0077b6; font-weight: 700; transition: transform .2s; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-body { padding: 0 18px 16px; font-size: 14px; color: #444; line-height: 1.7; }

/* ─── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sb-box {
  background: #fff; border: 1px solid #dbeafe; border-radius: 12px;
  padding: 16px; font-size: 13px; color: #555;
  box-shadow: 0 2px 10px rgba(0,119,182,.06);
}
.sb-box.sb-green { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); border-color: #7dd3fc; }
.sb-box.sb-blue { background: linear-gradient(135deg, #0077b6, #0096c7); border-color: #0096c7; }
.sb-box.sb-blue .sb-title { color: #fff; }
.sb-box.sb-blue .sb-nav li { border-bottom-color: rgba(255,255,255,.15); }
.sb-box.sb-blue .sb-nav a { color: #e0f7ff; }
.sb-box.sb-blue .sb-nav a:hover { color: #fff; background: rgba(255,255,255,.1); border-radius: 4px; }
.sb-box.sb-blue .sb-nav li.active a { color: #fff; font-weight: 700; }
.sb-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: #0077b6; margin-bottom: 10px; }
.sb-nav { list-style: none; }
.sb-nav li { border-bottom: 1px solid #f0f7ff; }
.sb-nav li:last-child { border-bottom: none; }
.sb-nav a { display: block; padding: 7px 4px; font-size: 13px; color: #334155; transition: all .15s; }
.sb-nav a:hover { color: #0077b6; text-decoration: none; padding-left: 8px; }
.sb-nav li.active a { color: #0077b6; font-weight: 700; padding-left: 6px; border-left: 2px solid #0077b6; }
.sb-link { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; color: #0077b6; }
.sb-link:hover { text-decoration: none; color: #005f8a; }

/* ─── Inline Article Images ───────────────────────────────────────────────── */
figure.article-img { margin: 4px 0 28px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,119,182,.12); }
figure.article-img .img-wrap { position: relative; }
figure.article-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
figure.article-img figcaption { background: #fff; border: 1px solid #f0f7ff; border-top: none; padding: 8px 14px; font-size: 12px; color: #888; }
figure.article-img .photo-credit,
.img-wrap .photo-credit {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.45); padding: 3px 8px;
  font-size: 11px; color: rgba(255,255,255,.8); border-radius: 4px;
}
@media (max-width: 540px) { figure.article-img img { height: 180px; } }

/* ─── Article card grid (homepage + category pages) ──────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: #fff; border-radius: 14px; border: 1px solid #dbeafe;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(0,119,182,.07);
  color: inherit;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,119,182,.18); transform: translateY(-3px); text-decoration: none; }
.card-img { overflow: hidden; height: 180px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: #0096c7; margin-bottom: 8px; }
.card-title { font-size: 15px; font-weight: 700; color: #0a2a4a; line-height: 1.35; margin-bottom: 8px; }
.card:hover .card-title { color: #0077b6; }
.card-excerpt { font-size: 13px; color: #555; line-height: 1.6; flex: 1; }
.card-footer {
  padding: 10px 20px; border-top: 1px solid #f0f7ff;
  background: linear-gradient(135deg, #f0f9ff, #fff);
  font-size: 12px; font-weight: 700; color: #0077b6;
}
.card-footer::after { content: ' →'; }
.card.featured { grid-column: 1 / -1; flex-direction: row; }
@media(max-width:600px){ .card.featured { flex-direction: column; } }
.card.featured .card-body { padding: 24px; }
.card.featured .card-title { font-size: 20px; color: #023e8a; }
.card-badge {
  display: inline-block; background: linear-gradient(135deg,#e55a2b,#f07040);
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 10px; letter-spacing: .4px;
}
.section-title {
  font-size: 18px; font-weight: 800; margin: 32px 0 16px; color: #0a2a4a;
  display: flex; align-items: center; gap: 12px;
}
.section-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, #bae6fd, transparent); }

/* ─── Site header (shared across article + category pages) ───────────────── */
.site-header {
  background: #0077b6; color: #fff; padding: 12px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.site-header .sw { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-logo { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.3px; white-space: nowrap; }
.site-logo span { color: #90e0ef; }
.site-logo:hover { text-decoration: none; color: #fff; }
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a { color: #90e0ef; font-size: 13px; font-weight: 600; padding: 4px 8px; border-radius: 6px; transition: all .15s; }
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.12); text-decoration: none; }
.site-nav a.active { color: #fff; background: rgba(255,255,255,.2); }
@media (max-width: 680px) { .site-nav { display: none; } }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, #0a2a4a 0%, #0a3d62 100%);
  color: #94a3b8; padding: 40px 0; font-size: 13px; margin-top: 48px;
}
.site-footer a { color: #bdc8d8; transition: color .15s; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; margin-bottom: 24px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; letter-spacing: .3px; }
.footer-col p  { line-height: 1.7; color: #94a3b8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 7px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #64748b; }

/* ─── Responsive Mobile ───────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .aawp-box { flex-direction: column; }
  .aawp-thumb { width: 100%; min-height: auto; flex-direction: row; padding: 16px; }
  .aawp-thumb img { width: 80px; height: 80px; }
  .aawp-footer {
    border-left: none; border-top: 1px solid #f0f7ff;
    flex-direction: row; align-items: center; justify-content: space-between;
    min-width: auto; width: 100%;
  }
  .procon { grid-template-columns: 1fr; }
  .procon-col.pro { border-right: none; border-bottom: 1px solid #f0f7ff; }
  .rank-banner { padding: 10px 14px; }
}
@media (max-width: 400px) { .site-logo { font-size: 15px; } }

/* ─── TOC (Table of Contents) ─────────────────────────────────────────────── */
.toc {
  background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 12px;
  padding: 16px 20px; margin-bottom: 28px;
}
.toc-title { font-size: 12px; font-weight: 800; color: #0077b6; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .6px; }
.toc ol { padding-left: 20px; }
.toc li { padding: 3px 0; font-size: 14px; }
.toc a { color: #0077b6; }
.toc a:hover { color: #005f8a; }

/* ─── Compare section heading ─────────────────────────────────────────────── */
.compare-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #0a2a4a; }
