/* Bloggenius - siti non AAMS guide - base theme */

:root {
  --red-50: #fff2f3;
  --red-100: #ffe1e4;
  --red-200: #ffc4cb;
  --red-500: #fb4d6b;
  --red-600: #ef2748;
  --red-700: #c81e3d;
  --ink-900: #16181f;
  --ink-700: #3a3e48;
  --ink-500: #6b7280;
  --ink-300: #9aa0ab;
  --surface: #ffffff;
  --bg: #fffafa;
  --border: #f1e1e3;
  --border-strong: #e8ccd0;
  --shadow-sm: 0 1px 2px rgba(22, 24, 31, 0.06);
  --shadow-md: 0 8px 24px rgba(200, 30, 61, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 2.85rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 700; margin-top: 0; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--red-700); }

p { margin: 0 0 1em; }

.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1080px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: 38px; border-radius: 9px; }
.brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink-900); }
.brand span em { color: var(--red-600); font-style: normal; }
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a { color: var(--ink-700); font-weight: 600; font-size: 0.94rem; }
.site-nav a:hover { color: var(--red-600); text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff !important; padding: 9px 18px; border-radius: 999px;
  font-weight: 700; box-shadow: var(--shadow-md);
}
.nav-cta:hover { text-decoration: none; filter: brightness(1.05); }

/* Hero */
.hero {
  background:
    radial-gradient(1100px 420px at 15% -10%, var(--red-100), transparent 60%),
    radial-gradient(900px 380px at 100% 0%, var(--red-50), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 30px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-100); color: var(--red-700);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 { max-width: 820px; }
.hero .tagline { font-size: 1.1rem; color: var(--ink-500); max-width: 680px; margin-bottom: 18px; }
.hero .intro p { color: var(--ink-700); max-width: 760px; }
.hero .intro { margin-bottom: 22px; }

.trust-bar {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  padding: 16px 0 4px; margin-top: 6px; border-top: 1px dashed var(--border-strong);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--ink-500); }
.trust-item .ic { color: var(--red-600); font-size: 1.05rem; }

/* Toplist card */
.toplist-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
  margin: 8px 0 6px;
}
.toplist-card .toplist-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; color: var(--ink-900);
  font-size: 1.02rem; margin-bottom: 12px;
}
.toplist-label .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-600); box-shadow: 0 0 0 4px var(--red-100); }

/* Section rhythm */
.section { padding: 44px 0; border-top: 1px solid var(--border); }
.section:first-of-type { border-top: none; }
.section-tag {
  display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--red-600); margin-bottom: 10px;
}

/* Tables */
.table-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--border-strong); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
thead th {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff; text-align: left; padding: 11px 14px; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
tbody td { padding: 11px 14px; border-top: 1px solid var(--border); color: var(--ink-700); }
tbody tr:nth-child(even) { background: var(--red-50); }
tbody td:first-child { font-weight: 700; color: var(--ink-900); }

/* Genuinely stacked tables on mobile, not just a horizontal scroller.
   Tables with a <thead> get a data-label per td (card-stack technique).
   Headerless key/value spec tables (table.spec, label in td.k) stack simpler. */
@media (max-width: 700px) {
  .table-wrap { border: none; overflow-x: visible; }
  table { min-width: 0; width: 100%; table-layout: fixed; }
  table:not(.spec) thead { display: none; }
  table:not(.spec) tr {
    display: block; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
    margin-bottom: 12px; background: var(--surface); overflow: hidden;
  }
  table:not(.spec) tbody tr:nth-child(even) { background: var(--surface); }
  table:not(.spec) td {
    display: block; width: 100%; border-top: 1px solid var(--border); padding: 8px 14px;
    white-space: normal; overflow-wrap: break-word;
  }
  table:not(.spec) td:first-child { border-top: none; }
  table:not(.spec) td::before {
    content: attr(data-label); display: block; margin-bottom: 2px;
    font-weight: 700; color: var(--red-700); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.02em;
  }
  table.spec tr { display: block; padding: 8px 0; border-top: 1px solid var(--border); }
  table.spec tr:first-child { border-top: none; }
  table.spec td { display: block; width: 100%; padding: 2px 14px; border: none; white-space: normal; overflow-wrap: break-word; }
  table.spec td.k { font-weight: 700; color: var(--red-700); padding-bottom: 0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.02em; }
}

/* Review cards */
.review-card { padding: 26px 0; border-top: 1px solid var(--border); }
.review-card:first-child { border-top: none; padding-top: 6px; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red-100); color: var(--red-700); font-weight: 700; font-size: 0.9rem; margin-right: 10px;
}
.rating-chip {
  background: var(--ink-900); color: #fff; font-weight: 700; font-size: 0.82rem;
  padding: 5px 12px; border-radius: 999px;
}
.cta-btn {
  display: inline-block; background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff; font-weight: 700; padding: 11px 22px; border-radius: 10px; box-shadow: var(--shadow-md);
  font-size: 0.94rem; margin-top: 10px;
}
.cta-btn:hover { text-decoration: none; filter: brightness(1.06); }

/* Author / EEAT bio */
.author-box {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 16px 18px; margin: 26px 0; box-shadow: var(--shadow-sm);
}
.author-box img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box .author-name { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 1rem; }
.author-box .author-role { color: var(--ink-500); font-size: 0.86rem; margin: 2px 0 4px; }
.author-box .author-link { font-size: 0.84rem; font-weight: 600; }

/* Brand feature list + mini pro/contro inside review cards */
.feature-list { margin: 12px 0 16px; padding-left: 20px; }
.feature-list li { margin-bottom: 6px; color: var(--ink-700); }
.mini-pc { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 14px 0 18px; }
@media (min-width: 640px) { .mini-pc { grid-template-columns: 1fr 1fr; } }
.mini-pc .col { border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.9rem; }
.mini-pc .pro { background: var(--red-50); border: 1px solid var(--border-strong); }
.mini-pc .con { background: #f7f7f8; border: 1px solid #ececef; }
.mini-pc h5 { margin: 0 0 8px; font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }
.mini-pc .pro h5 { color: var(--red-700); }
.mini-pc .con h5 { color: var(--ink-500); }
.mini-pc ul { margin: 0; padding-left: 18px; }
.mini-pc li { margin-bottom: 4px; color: var(--ink-700); font-size: 0.88rem; }

/* Guide modules */
.guide-module { margin-bottom: 6px; }
.guide-module h3 { margin-top: 20px; }

/* Pro/Contro */
.pc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 10px; }
@media (min-width: 720px) { .pc-grid { grid-template-columns: 1fr 1fr; } }
.pc-card { border: 1px solid var(--border-strong); border-radius: var(--radius-md); padding: 18px 20px; background: var(--surface); }
.pc-card.pro { border-top: 4px solid var(--red-600); }
.pc-card.con { border-top: 4px solid var(--ink-300); }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff; border-radius: var(--radius-lg); padding: 30px 28px; margin-top: 14px;
}
.verdict-box h2, .verdict-box h3 { color: #fff; }
.verdict-box a.cta-btn { background: #fff; color: var(--red-700); }

/* FAQ */
.faq-item { border: 1px solid var(--border-strong); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; background: var(--surface); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 15px 18px; font-weight: 700; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red-600); font-size: 1.3rem; font-weight: 700; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 18px 16px; color: var(--ink-700); }

/* Footer */
.site-footer { background: var(--ink-900); color: #cfd2d8; padding: 34px 0 24px; margin-top: 20px; }
.site-footer .wrap { max-width: 1080px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 30px; width: 30px; border-radius: 7px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: #fff; }
.disclaimer { font-size: 0.83rem; color: #9aa0ab; line-height: 1.6; max-width: 900px; }
.footer-links { display: flex; gap: 18px; margin: 14px 0; flex-wrap: wrap; }
.footer-links a { color: #cfd2d8; font-size: 0.88rem; font-weight: 600; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--red-500);
  color: #fff; font-weight: 800; font-size: 0.85rem; margin-right: 10px;
}

@media (max-width: 640px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .section { padding: 32px 0; }
}
