/* =====================================================================
   clean-blog.css — blog list (/blogs) and blog posts (/blog/name/id), 19 Sep 2026.
   Loaded after every other clean-*.css. Uses the tokens and parts of clean-base.css.
   .bl-*  list cards and the parts made from the post markers (blog_helper.php)
   .bp-*  the post page: head, contents list, side column, end card, related posts
   Old dark CSS reaches <a>, <p>, <h*> with !important, so colours on those carry
   !important here too (see SYSTEM.md, "the one trap").
   ===================================================================== */

.bl-page { --ok:#15803d; --ok-50:#ecfdf3; --ok-100:#c9f0d8; --warn:#b45309; --warn-50:#fff7ed; --warn-100:#fed7aa; }

/* ---------- small shared bits ---------- */
.bl-sec-head { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:4px; }
.bl-sec-head .detail-section-header { margin-bottom:14px; }
html body a.bl-sec-more { display:inline-flex; align-items:center; gap:6px; min-height:44px; margin-bottom:10px;
  font-size:14px; font-weight:700 !important; color:var(--red-dk) !important; white-space:nowrap; }
html body a.bl-sec-more:hover { color:var(--red) !important; }
.bl-girls { margin-left:-8px; margin-right:-8px; }
.bl-card-link::after { content:''; position:absolute; inset:0; z-index:1; border-radius:inherit; }
html body a.bl-card-link { color:inherit !important; font-weight:inherit !important; text-decoration:none !important; }
html body a.bl-card-link:focus-visible { outline:none; }

/* search box (hero of /blogs and the end of a post) */
.bl-search { position:relative; display:flex; gap:8px; max-width:460px; margin-top:4px; }
.bl-search .form-control { flex:1; min-width:0; height:48px; padding-left:42px; border-radius:14px; background:#fff; }
.bl-search-ic { position:absolute; left:14px; top:14px; color:var(--ink-3); pointer-events:none; line-height:0; }
.bl-search .cl-btn { flex:none; min-height:48px; padding:0 18px; }
.bl-search--slim { margin:22px auto 0; }

/* ======================= BLOG LIST ======================= */
.bl-hero .pg-hero-desc { max-width:34em; }
@media (max-width: 420px) { .bl-hero .pg-hero-stat { padding:0 11px 0 9px; font-size:13px; gap:6px; } .bl-hero .pg-hero-stats { gap:6px; } }
.bl-list-sec { margin-top:22px; }
.bl-grid { display:grid; gap:12px; }
.bl-card { position:relative; display:grid; grid-template-columns:112px minmax(0,1fr); gap:14px; align-items:start;
  padding:10px; background:#fff; border:1px solid var(--line); border-radius:20px; box-shadow:var(--sh-1);
  transition:box-shadow .2s, transform .2s, border-color .2s; }
.bl-card:hover { box-shadow:var(--sh-2); border-color:var(--line-2); transform:translateY(-2px); }
.bl-card:focus-within { outline:3px solid var(--red); outline-offset:2px; }
.bl-card-img { position:relative; border-radius:14px; overflow:hidden; aspect-ratio:1/1; background:var(--bg-2); }
.bl-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.bl-card:hover .bl-card-img img { transform:scale(1.04); }
.bl-card-body { min-width:0; padding:2px 4px 2px 0; display:flex; flex-direction:column; }
.bl-card-meta { display:flex; align-items:center; flex-wrap:wrap; gap:6px 8px; font-size:12px; font-weight:700; color:var(--ink-3); }
.bl-card-meta span { display:inline-flex; align-items:center; gap:5px; }
.bl-card-meta .ic { color:var(--red); }
.bl-dot { width:3px; height:3px; border-radius:50%; background:var(--line-2); }
html body .bl-card-title { font-size:16px !important; line-height:1.3 !important; margin:6px 0 4px !important; letter-spacing:-.015em;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.bl-card:hover .bl-card-title a { color:var(--red-dk) !important; }
html body .bl-card-sum { font-size:13.5px !important; line-height:1.5 !important; margin:0 !important; color:var(--ink-2) !important;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.bl-card-go { display:none; align-items:center; gap:6px; margin-top:14px; font-size:14px; font-weight:700; color:var(--red-dk); }
.bl-card-go .ic { transition:transform .2s; }
.bl-card:hover .bl-card-go .ic { transform:translateX(3px); }
.bl-card-flag { position:absolute; left:10px; top:10px; padding:5px 11px; border-radius:999px; background:#fff; color:var(--red-dk);
  font-size:12px; font-weight:800; box-shadow:var(--sh-2); }

/* the first post: big card */
.bl-card--feature { grid-template-columns:minmax(0,1fr); gap:12px; padding:10px 10px 16px; }
.bl-card--feature .bl-card-img { aspect-ratio:3/2; border-radius:15px; }
.bl-card--feature .bl-card-body { padding:0 6px; }
html body .bl-card--feature .bl-card-title { font-size:21px !important; -webkit-line-clamp:4; margin:8px 0 6px !important; }
html body .bl-card--feature .bl-card-sum { font-size:15px !important; -webkit-line-clamp:3; }
.bl-card--feature .bl-card-go { display:inline-flex; }

@media (min-width: 768px) {
  .bl-grid { grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px; }
  .bl-card { grid-template-columns:minmax(0,1fr); gap:12px; padding:10px 10px 18px; }
  .bl-card-img { aspect-ratio:3/2; }
  .bl-card-body { padding:0 8px; }
  html body .bl-card-title { font-size:19px !important; }
  html body .bl-card-sum { font-size:14.5px !important; }
  .bl-card-go { display:inline-flex; }
  .bl-card--feature { grid-column:1 / -1; }
}
@media (min-width: 992px) {
  .bl-list-sec { margin-top:32px; }
  .bl-grid { grid-template-columns:repeat(4, minmax(0,1fr)); gap:20px; }
  .bl-card--feature { grid-column:1 / -1; grid-template-columns:minmax(0,1.1fr) minmax(0,1fr); gap:36px; align-items:center; padding:12px; }
  .bl-card--feature .bl-card-img { border-radius:16px; }
  .bl-card--feature .bl-card-body { padding:12px 28px 12px 0; }
  html body .bl-card--feature .bl-card-title { font-size:30px !important; line-height:1.18 !important; }
  html body .bl-card--feature .bl-card-sum { font-size:16.5px !important; line-height:1.65 !important; }
  .bl-card--feature .bl-card-go { margin-top:22px; font-size:15px; }
  html body .bl-card-title { font-size:17.5px !important; }
}

/* ======================= BLOG POST ======================= */
.bp-progress { position:fixed; left:0; right:0; top:0; height:3px; z-index:901; pointer-events:none; }
.bp-progress i { display:block; height:100%; background:var(--red); transform:scaleX(0); transform-origin:0 50%; will-change:transform; }

.bp-grid { padding-top:4px; }
@media (min-width: 992px) {
  .bp-grid { display:grid; grid-template-columns:minmax(0,740px) 290px; justify-content:space-between; column-gap:48px; align-items:start; }
}
.bp-main { min-width:0; }

/* head */
.bp-head { padding-top:6px; }
html body .bp-h1 { font-size:clamp(28px, 7.6vw, 44px) !important; line-height:1.14 !important; margin:12px 0 14px !important; }
.bp-meta { display:flex; flex-wrap:wrap; gap:8px; }
.bp-meta > span { display:inline-flex; align-items:center; gap:6px; min-height:34px; padding:0 12px; border-radius:999px;
  background:var(--bg-2); font-size:13px; font-weight:600; color:var(--ink-2); }
.bp-meta .ic { color:var(--red); }
.bp-meta time { font-weight:700; color:var(--ink); }
.bp-banner { margin:18px 0 18px; border-radius:20px; overflow:hidden; aspect-ratio:3/2; background:var(--bg-2); box-shadow:var(--sh-2); }
.bp-banner img { width:100%; height:100%; object-fit:cover; display:block; }
@media (min-width: 992px) { .bp-banner { margin:26px 0 30px; border-radius:24px; } }

/* On this page — phone box */
.bp-toc--inline { margin:0 0 24px; border:1px solid var(--line); border-radius:18px; background:var(--bg-2); overflow:hidden; }
.bp-toc--inline summary { display:flex; align-items:center; gap:12px; min-height:60px; padding:8px 14px; cursor:pointer; list-style:none; }
.bp-toc--inline summary::-webkit-details-marker { display:none; }
.bp-toc--inline summary::marker { content:''; }
.bp-toc-ic { width:38px; height:38px; flex:none; display:grid; place-items:center; border-radius:12px; background:#fff; color:var(--red); box-shadow:var(--sh-1); }
.bp-toc-t { flex:1; display:flex; flex-direction:column; font-size:15.5px; font-weight:800; color:var(--ink); line-height:1.25; }
.bp-toc-t small { font-size:12.5px; font-weight:600; color:var(--ink-3); margin-top:2px; }
.bp-toc-chev { color:var(--ink-3); transition:transform .2s; }
.bp-toc--inline[open] .bp-toc-chev { transform:rotate(180deg); }
.bp-toc--inline[open] summary { border-bottom:1px solid var(--line); }
html body .bp-toc-list { list-style:none !important; margin:0 !important; padding:6px 8px 10px !important; }
html body .bp-toc-list li { margin:0; padding:0; }
html body .bp-toc-list a { display:flex; align-items:center; gap:12px; min-height:46px; padding:6px 8px; border-radius:12px;
  font-size:14.5px; font-weight:600 !important; line-height:1.35; color:var(--ink-2) !important; text-decoration:none !important; }
html body .bp-toc-list a:hover { background:#fff; color:var(--red-dk) !important; }
.bp-toc-n { width:10px; height:10px; flex:none; margin:0 4px; border-radius:50%; background:#fff;
  border:2px solid var(--line-2); transition:background .2s, border-color .2s, transform .2s; }
html body .bp-toc-list a:hover .bp-toc-n { border-color:var(--red); }
html body .bp-toc-list a.on { color:var(--red-dk) !important; }
.bp-toc-list a.on .bp-toc-n { background:var(--red); border-color:var(--red); transform:scale(1.2); }
@media (min-width: 992px) { .bp-toc--inline { display:none; } }

/* side column (computer) */
.bp-aside { display:none; }
@media (min-width: 992px) {
  .bp-aside { display:flex; flex-direction:column; gap:14px; position:sticky; top:calc(var(--hdr-h) + 20px);
    max-height:calc(100vh - var(--hdr-h) - 36px); padding-top:10px; }
  html body nav.bp-toc--side { display:flex !important; flex-direction:column; min-height:0; position:static !important;
    background:#fff !important; box-shadow:var(--sh-1) !important; z-index:auto !important;
    border:1px solid var(--line); border-radius:18px; padding:14px 8px 8px; }
  html body .bp-toc-h { display:flex; align-items:center; gap:8px; margin:0 0 4px !important; padding:0 10px;
    font-size:12px !important; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3) !important; }
  .bp-toc-h .ic { color:var(--red); }
  html body .bp-toc-list--side { overflow:auto; padding:4px 2px 4px !important; overscroll-behavior:contain; }
  html body .bp-toc-list--side a { min-height:40px; font-size:14px; padding:5px 8px; }
  html body .bp-toc-list--side a:hover { background:var(--bg-2); }
  html body .bp-toc-list--side a.on { background:var(--red-50); }
}
.bp-aside-book { flex:none; padding:16px; border-radius:18px; background:var(--bg-2); border:1px solid var(--line); display:grid; gap:8px; }
html body .bp-aside-t { margin:0 !important; font-size:16px; font-weight:800; color:var(--ink) !important; }
html body .bp-aside-s { margin:0 0 4px !important; font-size:13.5px; line-height:1.5 !important; }

/* prose tweaks */
html body .bp-prose { max-width:none; }
html body .bp-prose > p:first-child { font-size:18px; line-height:1.75; color:var(--ink) !important; }
html body .bp-prose h2 { margin:36px 0 12px !important; font-size:clamp(22px, 5.8vw, 28px) !important; }
@media (min-width: 992px) { html body .bp-prose p { font-size:17px; } }

/* ---------- boxes ---------- */
.bl-note, .bl-alert { display:flex; gap:14px; align-items:flex-start; margin:4px 0 24px; padding:16px; border-radius:18px; }
.bl-note { background:var(--red-50); border:1px solid var(--red-100); }
.bl-box-ic { width:38px; height:38px; flex:none; display:grid; place-items:center; border-radius:50%; background:#fff; color:var(--red); box-shadow:var(--sh-1); }
.bl-box-t { min-width:0; font-size:15.5px; line-height:1.65; color:var(--ink-2); }
.bl-box-t strong { color:var(--ink); }
.bl-alert { background:#fff; border:2px solid var(--red); box-shadow:0 10px 26px rgba(215,38,61,.12); }
.bl-alert .bl-box-ic { width:44px; height:44px; background:var(--red); color:#fff; box-shadow:0 0 0 6px var(--red-50); }
html body .bl-alert a.bl-tel { color:var(--red-dk) !important; font-weight:800 !important; text-decoration:underline; }
html body .bl-box-t a.bl-alert-btn { display:flex; width:max-content; margin-top:12px; text-decoration:none !important; }

/* ---------- pictures ---------- */
.bl-photo { margin:6px 0 24px; }
.bl-photo img { display:block; width:100%; height:auto; aspect-ratio:3/2; object-fit:cover; border-radius:18px !important; background:var(--bg-2); }
.bl-photo figcaption { display:flex; gap:8px; align-items:flex-start; margin-top:10px; padding:0 4px; font-size:13.5px; line-height:1.5; color:var(--ink-3); }
.bl-photo figcaption .ic { color:var(--red); margin-top:2px; }

/* ---------- video card ---------- */
.bl-video { margin:6px 0 26px; }
html body a.bl-video-frame, iframe.bl-video-frame { position:relative; display:block; width:100%; aspect-ratio:16/9; border:0;
  border-radius:18px; overflow:hidden; background:#111; box-shadow:var(--sh-2); text-decoration:none !important; }
.bl-video-frame img { width:100%; height:100%; object-fit:cover; display:block; opacity:.92; transition:transform .5s, opacity .3s; }
.bl-video-frame::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45)); }
.bl-video-play { position:absolute; left:50%; top:50%; z-index:2; width:72px; height:72px; margin:-36px 0 0 -36px; display:grid; place-items:center;
  border-radius:50%; background:var(--red); color:#fff; box-shadow:0 0 0 8px rgba(255,255,255,.28), 0 12px 30px rgba(0,0,0,.35); transition:transform .2s; }
.bl-video-play .ic { width:30px; height:30px; margin-left:4px; }
a.bl-video-frame:hover .bl-video-play { transform:scale(1.08); }
a.bl-video-frame:hover img { transform:scale(1.03); opacity:1; }
.bl-video-len { position:absolute; left:12px; top:12px; z-index:2; display:inline-flex; align-items:center; gap:6px; padding:5px 10px;
  border-radius:999px; background:rgba(0,0,0,.6); color:#fff; font-size:12px; font-weight:700; }
.bl-video figcaption { margin-top:10px; padding:0 4px; display:grid; gap:2px; }
.bl-video figcaption strong { font-size:15px; line-height:1.4; color:var(--ink); }
.bl-video figcaption span { font-size:13px; color:var(--ink-3); }

/* ---------- step timeline ---------- */
html body .bp-prose ol.bl-timeline { counter-reset:tl; gap:0; margin:8px 0 26px !important; }
html body .bp-prose ol.bl-timeline > li { counter-increment:tl; position:relative; padding:0 0 20px 50px; font-size:15.5px; line-height:1.65; }
html body .bp-prose ol.bl-timeline > li::before { content:counter(tl); position:absolute; left:0; top:-2px; width:34px; height:34px;
  display:grid; place-items:center; border-radius:50%; background:var(--red); color:#fff; font-size:14px; font-weight:800;
  box-shadow:0 0 0 5px var(--red-50); z-index:1; }
html body .bp-prose ol.bl-timeline > li::after { content:''; position:absolute; left:16px; top:36px; bottom:0; width:2px; border-radius:2px; background:var(--red-100); }
html body .bp-prose ol.bl-timeline > li:last-child { padding-bottom:0; }
html body .bp-prose ol.bl-timeline > li:last-child::after { display:none; }
html body .bp-prose ol.bl-timeline > li > strong:first-child { display:block; font-size:16.5px; line-height:1.4; margin-bottom:2px; color:var(--ink); }

/* ---------- message bubble + copy ---------- */
.bl-msg, .bl-plan-out { margin:6px 0 26px; padding:14px; border-radius:20px; background:var(--bg-2); border:1px solid var(--line); }
.bl-msg-label { display:inline-flex; align-items:center; gap:6px; margin:0 0 10px 2px; font-size:12px; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); }
.bl-msg-label .ic { color:var(--red); }
.bl-msg-bubble, .bl-plan-msg { position:relative; padding:12px 16px; background:#fff; border:1px solid var(--line);
  border-radius:18px 18px 18px 6px; box-shadow:var(--sh-1); }
html body .bl-msg-bubble p, html body .pb-prose .bl-plan-msg, html body .bl-plan-msg { margin:0 !important; font-size:16px !important; line-height:1.6 !important; color:var(--ink) !important; font-weight:500; }
.bl-plan-msg.flash { animation:blFlash .6s ease; }
@keyframes blFlash { from { background:var(--red-50); } to { background:#fff; } }
.bl-msg-actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.bl-msg-actions > .cl-btn { flex:1 1 auto; }
.bl-msg-actions > a.cl-btn--red { order:-1; }
@media (min-width: 480px) { .bl-msg-actions > a.cl-btn--red { order:0; } }
.bl-copy { display:none; }
.bl-js .bl-copy { display:inline-flex; }
.bl-copy.is-done { border-color:var(--ok) !important; color:var(--ok) !important; background:var(--ok-50) !important; }

/* ---------- tick list ---------- */
.bl-check { margin:6px 0 26px; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#fff; box-shadow:var(--sh-1); }
html body .bp-prose ul.bl-check-list { display:block; margin:0 !important; padding:0 !important; }
html body .bp-prose ul.bl-check-list > li { padding:0; border-top:1px solid var(--line); }
html body .bp-prose ul.bl-check-list > li:first-child { border-top:0; }
html body .bp-prose ul.bl-check-list > li::before { display:none; }
html body label.bl-check-row { position:relative; display:flex; align-items:flex-start; gap:12px; min-height:56px; margin:0; padding:14px 16px;
  cursor:pointer; font-weight:400; transition:background .15s; -webkit-tap-highlight-color:transparent; }
.bl-check-row:hover { background:#fcfcfd; }
.bl-check-in { position:absolute; opacity:0; width:1px; height:1px; }
.bl-check-box { width:26px; height:26px; flex:none; display:grid; place-items:center; border-radius:8px; border:2px solid var(--line-2);
  background:#fff; color:transparent; transition:background .15s, border-color .15s, transform .15s; }
.bl-check-box .ic { width:16px; height:16px; stroke-width:3; }
.bl-check-in:checked + .bl-check-box { background:var(--red); border-color:var(--red); color:#fff; animation:blPop .25s ease; }
.bl-check-in:focus-visible + .bl-check-box { outline:3px solid var(--red); outline-offset:2px; }
.bl-check-t { font-size:15.5px; line-height:1.5; color:var(--ink); padding-top:1px; transition:color .15s; }
.bl-check-in:checked ~ .bl-check-t { color:var(--ink-2); text-decoration:line-through; text-decoration-color:rgba(29,33,41,.28); text-decoration-thickness:1.5px; }
.bl-check-row:has(.bl-check-in:checked) { background:#fcfcfd; }
@keyframes blPop { 50% { transform:scale(1.15); } }
.bl-check-foot { display:none; align-items:center; gap:12px; padding:12px 16px; background:var(--bg-2); border-top:1px solid var(--line); }
.bl-js .bl-check-foot { display:flex; }
.bl-check-bar { flex:1; height:6px; border-radius:6px; background:var(--line); overflow:hidden; }
.bl-check-bar i { display:block; height:100%; width:0; border-radius:6px; background:var(--red); transition:width .3s, background .3s; }
.bl-check-count { flex:none; font-size:13.5px; font-weight:700; color:var(--ink-2); }
.bl-check.is-all .bl-check-bar i { background:var(--ok); }
.bl-check.is-all .bl-check-count { color:var(--ok); }

/* ---------- with us / fake agency table ---------- */
.bl-compare-wrap { margin:6px 0 26px; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#fff; box-shadow:var(--sh-1); }
html body table.bl-compare { width:100%; margin:0; border-collapse:collapse; table-layout:fixed; }
html body .bl-compare th { padding:12px 12px; font-size:14px; font-weight:800; line-height:1.3; text-align:left; vertical-align:middle; border:0; }
html body .bl-compare th.bl-yes { background:var(--ok-50); color:var(--ok) !important; }
html body .bl-compare th.bl-no { background:var(--red-50); color:var(--red-dk) !important; border-left:1px solid var(--line); }
.bl-cmp-ic { width:24px; height:24px; display:inline-grid; place-items:center; margin:0 8px -7px 0; border-radius:50%; color:#fff; }
.bl-yes .bl-cmp-ic { background:var(--ok); }
.bl-no .bl-cmp-ic { background:var(--red); }
.bl-cmp-ic .ic { width:14px; height:14px; stroke-width:3; }
html body .bl-compare td { position:relative; padding:12px 12px 12px 34px; font-size:14.5px; line-height:1.45; vertical-align:top;
  border-top:1px solid var(--line); color:var(--ink) !important; }
html body .bl-compare td.bl-no { border-left:1px solid var(--line); color:var(--ink-2) !important; }
.bl-compare td > .ic { position:absolute; left:11px; top:14px; stroke-width:3; }
.bl-compare td.bl-yes > .ic { color:var(--ok); }
.bl-compare td.bl-no > .ic { color:var(--red); }
@media (min-width: 768px) {
  html body .bl-compare th { padding:14px 18px; font-size:15px; }
  html body .bl-compare td { padding:14px 18px 14px 44px; font-size:15.5px; }
  .bl-compare td > .ic { left:18px; top:17px; }
}

/* ---------- scam or safe quiz ---------- */
.bl-quiz { display:grid; gap:12px; margin:6px 0 28px; counter-reset:q; }
.bl-q { position:relative; padding:16px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--sh-1);
  transition:border-color .2s, background .2s; }
.bl-q-n { display:inline-flex; align-items:baseline; gap:1px; margin-bottom:8px; padding:3px 10px; border-radius:999px;
  background:var(--bg-2); font-size:13px; font-weight:800; color:var(--ink); }
.bl-q-n small { font-size:11px; color:var(--ink-3); font-weight:700; }
html body .bp-prose .bl-q-text { margin:0 !important; padding:12px 14px; border-radius:6px 16px 16px 16px; background:var(--bg-2);
  font-size:16px !important; line-height:1.55 !important; color:var(--ink) !important; font-weight:600; }
.bl-q-btns { display:none; gap:8px; margin-top:12px; }
.bl-js .bl-q-btns { display:flex; }
.bl-q-btn { flex:1; display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:48px; padding:0 12px;
  border:1.5px solid var(--line-2); border-radius:14px; background:#fff; color:var(--ink); font-family:var(--font); font-size:15px; font-weight:700;
  cursor:pointer; transition:background .15s, border-color .15s, color .15s, opacity .15s; }
.bl-q-btn--scam .ic { color:var(--red); }
.bl-q-btn--safe .ic { color:var(--ok); }
.bl-q-btn--scam:hover:not(:disabled) { border-color:var(--red); background:var(--red-50); }
.bl-q-btn--safe:hover:not(:disabled) { border-color:var(--ok); background:var(--ok-50); }
.bl-q-btn:disabled { cursor:default; opacity:.45; }
.bl-q.done .bl-q-btn.picked { opacity:1; color:#fff; }
.bl-q.done .bl-q-btn.picked .ic { color:#fff; }
.bl-q.right .bl-q-btn.picked { background:var(--ok); border-color:var(--ok); }
.bl-q.wrong .bl-q-btn.picked { background:var(--red); border-color:var(--red); }
.bl-q.right { border-color:var(--ok-100); }
.bl-q.wrong { border-color:var(--red-100); }
.bl-why-wrap { margin-top:10px; }
.bl-js .bl-q:not(.done) .bl-why-wrap { display:none; }
.bl-q.done .bl-why-wrap { animation:blIn .3s ease; }
.bl-verdict:empty { display:none; }
.bl-verdict { display:inline-block; margin-bottom:6px; padding:3px 10px; border-radius:999px; font-size:12.5px; font-weight:800; }
.bl-q.right .bl-verdict { background:var(--ok-50); color:var(--ok); }
.bl-q.wrong .bl-verdict { background:var(--red-50); color:var(--red-dk); }
html body .bp-prose .bl-why { margin:0 !important; font-size:15px !important; line-height:1.6 !important; }
.bl-quiz-score { display:none; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:16px;
  border-radius:20px; background:var(--ink); color:#fff; animation:blIn .3s ease; }
.bl-quiz-score.show { display:flex; }
.bl-quiz-txt { font-size:16px; font-weight:800; line-height:1.4; }
.bl-quiz-score .cl-btn { background:transparent; border-color:rgba(255,255,255,.4); color:#fff !important; }
.bl-quiz-score .cl-btn:hover { border-color:#fff; }
@keyframes blIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }

/* ---------- area chips ---------- */
.bl-picker { margin:6px 0 28px; padding:16px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--sh-1); }
.bl-picker-chips { display:flex; flex-wrap:wrap; gap:8px; }
html body .bp-prose a.bl-zone { display:inline-flex; align-items:center; gap:6px; min-height:44px; padding:0 15px; border-radius:999px;
  border:1.5px solid var(--line-2); background:#fff; font-size:14.5px; font-weight:700 !important; color:var(--ink) !important;
  text-decoration:none !important; transition:background .15s, border-color .15s, color .15s; }
.bl-zone .ic { color:var(--red); }
html body .bp-prose a.bl-zone:hover { border-color:var(--red); background:var(--red-50); }
html body .bp-prose a.bl-zone.on { background:var(--red); border-color:var(--red); color:#fff !important; box-shadow:var(--sh-red); }
.bl-zone.on .ic { color:#fff; }
.bl-picker-out:empty { display:none; }
.bl-picker-out { margin-top:14px; }
.bl-pick-res { padding:14px 16px; border-radius:16px; animation:blIn .25s ease; }
.bl-pick-res.is-city { background:var(--ok-50); border:1px solid var(--ok-100); }
.bl-pick-res.is-travel { background:var(--warn-50); border:1px solid var(--warn-100); }
html body .bp-prose .bl-pick-h { margin:0 0 2px !important; font-size:16px !important; font-weight:800; color:var(--ink) !important; }
html body .bp-prose .bl-pick-t { margin:0 !important; font-size:15px !important; line-height:1.55 !important; }
.bl-pick-res.is-city .bl-pick-h { color:var(--ok) !important; }
.bl-pick-res.is-travel .bl-pick-h { color:var(--warn) !important; }

/* ---------- dinner planner ---------- */
.bl-planner { margin:6px 0 28px; padding:16px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--sh-2); }
.bl-plan-g { margin:0 0 16px; padding:0; border:0; min-width:0; }
.bl-plan-g legend { display:flex; align-items:center; gap:6px; width:auto; margin:0 0 8px; padding:0; font-size:12px; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); }
.bl-plan-g legend .ic { color:var(--red); }
.bl-plan-opts { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:8px; }
.bl-plan-g:nth-of-type(2) .bl-plan-opts { grid-template-columns:repeat(4, minmax(0,1fr)); }
html body label.bl-opt { position:relative; margin:0; display:block; cursor:pointer; font-weight:400; }
.bl-opt input { position:absolute; opacity:0; width:1px; height:1px; }
.bl-opt span { display:flex; align-items:center; justify-content:center; min-height:46px; padding:6px 10px; border-radius:14px; text-align:center;
  border:1.5px solid var(--line-2); background:#fff; font-size:14px; font-weight:700; line-height:1.25; color:var(--ink);
  transition:background .15s, border-color .15s, color .15s; }
.bl-opt:hover span { border-color:var(--ink-3); }
.bl-opt input:checked + span { border-color:var(--red); background:var(--red-50); color:var(--red-dk); box-shadow:inset 0 0 0 1px var(--red); }
.bl-opt input:focus-visible + span { outline:3px solid var(--red); outline-offset:2px; }
.bl-planner .bl-plan-out { margin:4px 0 0; }
@media (min-width: 768px) {
  .bl-planner { padding:22px; }
  .bl-plan-g:first-of-type .bl-plan-opts { grid-template-columns:repeat(4, minmax(0,1fr)); }
}

/* ---------- FAQ, end card ---------- */
.bp-faq { margin-top:40px; }
html body .bp-sec-h { font-size:clamp(22px, 5.8vw, 28px) !important; margin:0 0 14px !important; }
.bp-end { display:grid; gap:12px; margin:32px 0 20px; }
.bp-help, .bp-share { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px 14px; padding:14px 16px;
  border-radius:18px; border:1px solid var(--line); background:#fff; box-shadow:var(--sh-1); }
.bp-help { display:none; }
.bl-js .bp-help { display:flex; }
html body .bp-help-q { margin:0 !important; font-size:16px; font-weight:800; color:var(--ink) !important; }
.bp-help-btns, .bp-share-btns { display:flex; gap:8px; }
.bp-help-btn { display:inline-flex; align-items:center; gap:7px; min-height:44px; padding:0 18px; border-radius:999px; border:1.5px solid var(--line-2);
  background:#fff; font-family:var(--font); font-size:14.5px; font-weight:700; color:var(--ink); cursor:pointer; transition:all .15s; }
.bp-help-btn:hover { border-color:var(--ink-3); }
.bp-help-btn.on { background:var(--red-50); border-color:var(--red); color:var(--red-dk); }
html body .bp-help-thanks { flex-basis:100%; margin:0 !important; font-size:14.5px; }
html body .bp-help-thanks:empty { display:none; }
.bp-share-l { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; color:var(--ink); }
.bp-share-l .ic { color:var(--red); }
@media (max-width: 480px) { .bp-share-btns { flex:1 1 100%; } .bp-share-btns > * { flex:1; } }
@media (min-width: 768px) { .bp-end { grid-template-columns:1fr 1fr; } }

/* ---------- more guides ---------- */
.bp-rel-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; }
.bp-rel { position:relative; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:18px; overflow:hidden;
  background:#fff; box-shadow:var(--sh-1); transition:box-shadow .2s, transform .2s; }
.bp-rel:hover { box-shadow:var(--sh-2); transform:translateY(-2px); }
.bp-rel:focus-within { outline:3px solid var(--red); outline-offset:2px; }
.bp-rel-img { aspect-ratio:3/2; background:var(--bg-2); overflow:hidden; }
.bp-rel-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.bp-rel:hover .bp-rel-img img { transform:scale(1.04); }
.bp-rel-body { padding:10px 12px 14px; }
.bp-rel-meta { display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:700; color:var(--ink-3); }
.bp-rel-meta .ic { color:var(--red); }
html body .bp-rel-t { margin:4px 0 0 !important; font-size:15px !important; line-height:1.3 !important; letter-spacing:-.01em;
  display:-webkit-box; -webkit-line-clamp:5; -webkit-box-orient:vertical; overflow:hidden; }
.bp-rel:hover .bp-rel-t a { color:var(--red-dk) !important; }
@media (min-width: 992px) {
  .bp-rel-grid { grid-template-columns:repeat(4, minmax(0,1fr)); gap:18px; }
  html body .bp-rel-t { font-size:16.5px !important; }
  .bp-rel-body { padding:12px 16px 18px; }
}
