/* QuikWebTools — Tech Vanta LLC Design System */

:root {
  --font-body:    "Saira", system-ui, -apple-system, sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, sans-serif;
  /* Brand */
  --orange:       #F47C20;
  --orange-hover: #D96B18;
  --orange-soft:  #FFF4EC;
  --orange-mid:   rgba(244,124,32,.2);
  --blue:         #1B4FA0;
  --blue-hover:   #153E80;
  --blue-soft:    #EEF4FF;
  /* Neutrals */
  --ink:    #0C1B33;
  --ink-2:  #1E3050;
  --muted:  #64748B;
  --muted-2:#94A3B8;
  --line:   #E2E8F0;
  --line-2: #F1F5F9;
  --surface:#FFFFFF;
  --bg:     #F5F7FA;
  /* Semantic */
  --warn:   #B45309;
  /* Radii */
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.04);
  --shadow-md:    0 8px 24px rgba(0,0,0,.08),0 3px 8px rgba(0,0,0,.05);
  --shadow-card:  0 12px 32px rgba(244,124,32,.14),0 4px 12px rgba(0,0,0,.06);
  /* Gradients */
  --gradient:      linear-gradient(135deg,#F47C20 0%,#1B4FA0 100%);
  --gradient-rev:  linear-gradient(135deg,#1B4FA0 0%,#F47C20 100%);
  --gradient-soft: linear-gradient(135deg,#FFF9F5 0%,#EEF4FF 100%);
}

/* ── Reset ─────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  line-height:1.6;
  min-height:100vh;
}
h1,h2,h3,h4,h5,h6,
.hero h1,.hero-stat-num,.cat-title,.tool-page-title,.tool-name,
.footer-col-title,.blog-card-title,.breadcrumb,.eyebrow,
.btn-accent,.nav-pill,.header-search,.hero-search input,.hero-search button{
  font-family:var(--font-heading);
}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace}

/* ── Header ─────────────────────────────────────── */
.topbar{
  background:var(--surface);
  border-bottom:1px solid var(--line);
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}

/* ── Brand ──────────────────────────────────────── */
.brand{
  font-weight:800;
  letter-spacing:-.03em;
  font-size:1.15rem;
  color:var(--ink);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  line-height:1;
  white-space:nowrap;
}
.brand:hover{color:var(--ink);text-decoration:none}
.site-logo{height:40px;width:auto;display:block;max-width:200px;object-fit:contain}
.site-logo-sm{height:34px;max-width:170px}
.site-logo-lg{height:48px;max-width:240px}
.footer-brand .site-logo{height:44px;max-width:220px}
.footer-brand{display:inline-block}
.brand-icon{
  width:30px;height:30px;
  background:var(--gradient);
  border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:.62rem;font-weight:900;letter-spacing:.02em;
  flex-shrink:0;
  box-shadow:0 2px 6px rgba(244,124,32,.3);
}
.brand-q{color:var(--ink)}
.brand-w{color:var(--orange)}
.brand-t{color:var(--blue)}

/* ── Header Search ──────────────────────────────── */
.header-search{
  background:var(--bg);
  border:1.5px solid var(--line);
  border-radius:20px;
  padding:.36rem 1rem;
  font-size:.84rem;
  font-family:inherit;
  color:var(--ink);
  transition:border-color .15s,box-shadow .15s;
  width:100%;
}
.header-search:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(244,124,32,.12);
  outline:none;
  background:var(--surface);
}

/* ── Hero ───────────────────────────────────────── */
.hero{
  background:var(--gradient);
  border-radius:var(--radius-xl);
  color:#fff;
  padding:2.75rem 2.5rem;
  margin-bottom:2.25rem;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:'';
  position:absolute;inset:0;
  background-image:
    radial-gradient(circle,rgba(255,255,255,.13) 1.5px,transparent 1.5px),
    radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:24px 24px,12px 12px;
  background-position:0 0,6px 6px;
  pointer-events:none;
}
.hero-inner{position:relative;z-index:1}

.hero-badge{
  display:inline-flex;align-items:center;gap:.35rem;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  padding:.22rem .75rem;
  font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:.9rem;color:#fff;
}

.hero h1{
  font-size:clamp(1.65rem,3.5vw,2.5rem);
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:.45rem;
  line-height:1.15;
}
.hero-sub{
  font-size:.95rem;opacity:.82;
  max-width:52ch;margin-bottom:1.75rem;line-height:1.6;
}

.hero-search{display:flex;gap:.5rem;max-width:500px}
.hero-search input{
  flex:1;
  border:1.5px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  color:#fff;border-radius:10px;
  padding:.6rem 1.1rem;font-size:.9rem;font-family:inherit;
  outline:none;
  transition:border-color .15s,background .15s;
}
.hero-search input::placeholder{color:rgba(255,255,255,.55)}
.hero-search input:focus{border-color:rgba(255,255,255,.7);background:rgba(255,255,255,.22)}
.hero-search button{
  background:#fff;color:var(--orange);
  font-weight:700;border:none;border-radius:10px;
  padding:.6rem 1.3rem;cursor:pointer;font-size:.88rem;
  white-space:nowrap;font-family:inherit;
  box-shadow:0 2px 8px rgba(0,0,0,.14);
  transition:transform .12s,box-shadow .12s;
}
.hero-search button:hover{transform:translateY(-1px);box-shadow:0 4px 14px rgba(0,0,0,.18)}

.hero-stats{display:flex;gap:2rem;margin-top:1.75rem;flex-wrap:wrap}
.hero-stat{display:flex;flex-direction:column}
.hero-stat-num{font-size:1.55rem;font-weight:900;line-height:1;letter-spacing:-.04em}
.hero-stat-lbl{font-size:.7rem;opacity:.68;margin-top:.2rem;font-weight:500}

/* ── Category Sections ──────────────────────────── */
.cat-section{margin-top:2.25rem}

.cat-header-row{
  display:flex;align-items:center;
  justify-content:space-between;
  margin-bottom:.875rem;
  padding-bottom:.6rem;
  border-bottom:2px solid var(--line);
}

.cat-title{
  font-weight:800;letter-spacing:-.025em;font-size:1.05rem;
  color:var(--ink);
  display:flex;align-items:center;gap:.55rem;
}
.cat-title-bar{
  width:4px;height:18px;
  background:var(--gradient);border-radius:3px;
  display:inline-block;flex-shrink:0;
}

.cat-count{
  font-size:.73rem;font-weight:700;
  background:var(--blue-soft);color:var(--blue);
  padding:.18rem .6rem;border-radius:999px;
}

/* ── Tool Cards ─────────────────────────────────── */
.tool-card{
  text-decoration:none;color:var(--ink);
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-xs);
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
  height:100%;
  display:flex;align-items:flex-start;gap:.75rem;
  padding:.9rem 1rem;cursor:pointer;
}
.tool-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-card);
  border-color:var(--orange);
  color:var(--ink);text-decoration:none;
}
.tool-card:focus-visible{outline:2px solid var(--orange);outline-offset:2px}

.tool-ico{
  width:40px;height:40px;border-radius:10px;
  background:var(--orange-soft);color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;flex:0 0 auto;
  box-shadow:0 2px 6px rgba(244,124,32,.2);
  transition:box-shadow .15s;
}
.tool-card:hover .tool-ico{box-shadow:0 4px 12px rgba(244,124,32,.32)}

.tool-name{font-weight:700;font-size:.84rem;line-height:1.3;color:var(--ink);display:block}
.tool-desc{font-size:.75rem;color:var(--muted);line-height:1.45;margin-top:.15rem;display:block}

/* ── Card Soft ──────────────────────────────────── */
.card-soft{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}

/* ── Eyebrow ────────────────────────────────────── */
.eyebrow{
  font-size:.68rem;text-transform:uppercase;letter-spacing:.15em;
  color:var(--orange);font-weight:700;
  display:inline-flex;align-items:center;gap:.4rem;
}
.eyebrow::before{
  content:'';display:inline-block;
  width:14px;height:2px;background:var(--orange);border-radius:2px;
}

/* ── Tool Page Header ───────────────────────────── */
.tool-page-header{
  background:var(--gradient-soft);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:1.5rem 2rem;
  margin-bottom:1.5rem;
}
.tool-page-title{
  font-size:1.6rem;font-weight:900;
  letter-spacing:-.04em;line-height:1.2;
}
.tool-page-desc{
  color:var(--muted);max-width:64ch;font-size:.9rem;margin-top:.35rem;
}
.tool-pill{
  display:inline-flex;align-items:center;gap:.3rem;
  font-size:.68rem;font-weight:700;
  padding:.2rem .55rem;border-radius:999px;
  letter-spacing:.04em;text-transform:uppercase;
}
.tool-pill-free{background:#ECFDF5;color:#065F46}
.tool-pill-private{background:var(--blue-soft);color:var(--blue)}

/* ── Forms ──────────────────────────────────────── */
.form-control,.form-select{
  border-color:var(--line);border-radius:8px;
  font-family:inherit;
  transition:border-color .15s,box-shadow .15s;
}
.form-control:focus,.form-select:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(244,124,32,.15);
  outline:none;
}

/* ── Buttons ────────────────────────────────────── */
.btn-accent{
  background:var(--gradient);border:none;
  color:#fff;font-weight:700;border-radius:8px;
  padding:.5rem 1.3rem;font-family:inherit;
  display:inline-flex;align-items:center;gap:.4rem;
  transition:opacity .15s,transform .12s,box-shadow .15s;
  box-shadow:0 2px 10px rgba(244,124,32,.28);
}
.btn-accent:hover{opacity:.9;color:#fff;transform:translateY(-1px);box-shadow:0 4px 16px rgba(244,124,32,.35)}

/* ── Output Box ─────────────────────────────────── */
.out{
  background:#0C1B33;color:#D4E0F0;
  border-radius:10px;padding:.9rem 1.1rem;
  white-space:pre-wrap;word-break:break-word;
  min-height:60px;font-size:.85rem;margin:0;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  line-height:1.65;
}
.out.light{
  background:#F8FAFC;color:var(--ink);
  border:1px solid var(--line);
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
}

/* ── Nav Pills ──────────────────────────────────── */
.nav-pill{
  font-size:.83rem;color:var(--muted);text-decoration:none;
  padding:.32rem .7rem;border-radius:999px;white-space:nowrap;
  font-weight:500;transition:background .12s,color .12s;
}
.nav-pill:hover,.nav-pill.active{
  background:var(--orange-soft);color:var(--orange);text-decoration:none;
}

/* ── Labels ─────────────────────────────────────── */
.label-sm{font-size:.8rem;font-weight:600}
.stat{font-size:.82rem;color:var(--muted)}
.stat b{color:var(--ink)}

/* ── Backend Note ───────────────────────────────── */
.backend-note{
  border-left:3px solid var(--orange);
  background:var(--orange-soft);
  border-radius:0 8px 8px 0;
  padding:.6rem .9rem;font-size:.875rem;
}

/* ── Embedded slots (admin-controlled, no public labels) ── */
.slot-embed{margin:1rem 0;overflow:hidden;line-height:0}
.slot-embed--footer{margin-top:1.5rem}

/* ── Prose ──────────────────────────────────────── */
.prose h2{font-weight:800;letter-spacing:-.025em;margin-top:1.8rem;color:var(--ink)}
.prose h3{font-weight:700;margin-top:1.4rem;color:var(--ink-2)}
.prose p,.prose li{color:#334155;line-height:1.75}
.prose ul{padding-left:1.5rem}
.faq-q{font-weight:700;margin-bottom:.25rem;color:var(--ink-2)}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb{font-size:.82rem;margin-bottom:.75rem}
.breadcrumb-item+.breadcrumb-item::before{color:var(--muted-2)}
.breadcrumb-item a{color:var(--blue);text-decoration:none;font-weight:500}
.breadcrumb-item a:hover{color:var(--orange)}
.breadcrumb-item.active{color:var(--muted)}

/* ── Footer ─────────────────────────────────────── */
footer{background:var(--ink);color:rgba(255,255,255,.7)}

.footer-brand{
  font-size:1.1rem;font-weight:800;letter-spacing:-.03em;
  color:#fff;text-decoration:none;
  display:inline-flex;align-items:center;gap:.45rem;
}
.footer-brand:hover{color:#fff;text-decoration:none}
.footer-brand .brand-w{color:var(--orange)}
.footer-brand .brand-t{color:#93BFFF}

footer a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.84rem;transition:color .12s}
footer a:hover{color:var(--orange)}
footer hr{border-color:rgba(255,255,255,.1);margin:1.25rem 0}

.footer-col-title{
  font-size:.67rem;text-transform:uppercase;letter-spacing:.13em;
  color:rgba(255,255,255,.35);font-weight:700;margin-bottom:.7rem;
}
.footer-links{display:flex;flex-direction:column;gap:.5rem}

.footer-tagline{
  font-size:.8rem;color:rgba(255,255,255,.42);
  margin-top:.5rem;line-height:1.55;max-width:32ch;
}

.footer-badge{
  display:inline-flex;align-items:center;gap:.4rem;
  background:rgba(244,124,32,.18);
  border:1px solid rgba(244,124,32,.3);
  border-radius:999px;padding:.22rem .65rem;
  font-size:.69rem;color:#FFBC85;font-weight:700;
  margin-top:.8rem;letter-spacing:.04em;
}

.footer-copy{font-size:.77rem;color:rgba(255,255,255,.32)}
.footer-attribution{color:rgba(255,255,255,.45);text-decoration:none}
.footer-attribution:hover{color:var(--orange)}
@media(min-width:768px){
  .footer-bottom{flex-wrap:nowrap!important;white-space:nowrap}
}

/* ── Divider ─────────────────────────────────────── */
.section-divider{height:2px;background:var(--line-2);border-radius:2px;margin:2rem 0}

/* ── Responsive ─────────────────────────────────── */
@media(max-width:768px){
  .hero{padding:1.75rem 1.25rem;border-radius:var(--radius-lg)}
  .hero h1{font-size:1.65rem}
  .hero-stats{gap:1.25rem}
  .hero-search{max-width:100%}
  .tool-page-header{padding:1.2rem 1.1rem}
  .tool-page-title{font-size:1.3rem}
}
@media(max-width:576px){
  .hero-stats{gap:1rem}
  .hero-stat-num{font-size:1.25rem}
  .tool-card{padding:.75rem .875rem}
  .tool-ico{width:36px;height:36px;font-size:1rem}
  .cat-title{font-size:.95rem}
  .brand-icon{width:26px;height:26px;font-size:.58rem}
  .site-logo{height:34px;max-width:170px}
  .footer-brand .site-logo{height:38px;max-width:190px}
}
/* ── AJAX Search Dropdown ───────────────────────── */
.header-search-wrap{position:relative}

.search-dropdown{
  display:none;
  position:absolute;top:calc(100% + 6px);left:0;right:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
  z-index:1080;
  overflow:hidden;
}
.search-dropdown.active{display:block}

.search-result-item{
  display:flex;align-items:center;gap:.75rem;
  padding:.6rem .85rem;
  text-decoration:none;color:var(--ink);
  border-bottom:1px solid var(--line-2);
  transition:background .1s;
}
.search-result-item:last-child{border-bottom:none}
.search-result-item:hover{background:var(--orange-soft);color:var(--ink)}

.search-result-ico{
  width:32px;height:32px;border-radius:8px;
  background:var(--orange-soft);color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;font-weight:700;flex-shrink:0;
}
.search-result-body{display:flex;flex-direction:column;min-width:0}
.search-result-name{font-size:.84rem;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.search-result-cat{font-size:.72rem;color:var(--muted);margin-top:.05rem}

/* ── Category Badges ────────────────────────────── */
.cat-badge{
  display:inline-flex;align-items:center;
  background:var(--surface);
  border:1.5px solid var(--line);
  border-radius:999px;
  padding:.3rem .85rem;
  font-size:.82rem;font-weight:600;color:var(--muted);
  text-decoration:none;
  transition:border-color .12s,color .12s,background .12s;
}
.cat-badge:hover{border-color:var(--orange);color:var(--orange);background:var(--orange-soft)}
.cat-badge-home{background:var(--gradient-soft);border-color:var(--line)}

/* ── Contact Page ───────────────────────────────── */
.contact-success{
  display:flex;align-items:flex-start;gap:.875rem;
  background:#ECFDF5;border:1px solid #A7F3D0;
  border-radius:var(--radius);padding:1rem 1.25rem;
  color:#065F46;
}
.contact-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.7rem}
.contact-list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.875rem;color:#334155}
.contact-list-ico{flex-shrink:0;margin-top:.05rem}

/* ── Blog Cards ─────────────────────────────────── */
.blog-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  color:var(--ink);
  transition:transform .15s,box-shadow .15s,border-color .15s;
}
.blog-card:hover{
  border-color:var(--orange);
  box-shadow:var(--shadow-md);
  transform:translateY(-3px);
  color:var(--ink);
}
.blog-card-img-wrap{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--surface);
  flex-shrink:0;
}
.blog-card-img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}
.blog-card:hover .blog-card-img{transform:scale(1.04)}
.blog-card-img-placeholder{
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;
  background:var(--surface);
}
.blog-card-title{
  font-size:.95rem;font-weight:700;
  letter-spacing:-.01em;line-height:1.35;
  color:var(--ink);
}
.blog-card-excerpt{
  font-size:.82rem;line-height:1.55;
  color:var(--muted);
}
.blog-card-date{
  font-size:.72rem;
  color:var(--muted);
  font-variant-numeric:tabular-nums;
}

/* ── Blog Hero Image (single post) ──────────────── */
.blog-hero-img-wrap{
  width:100%;
  max-height:420px;
  overflow:hidden;
}
.blog-hero-img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
}

/* ── Responsive ─────────────────────────────────── */
@media(max-width:768px){
  .hero{padding:1.75rem 1.25rem;border-radius:var(--radius-lg)}
  .hero h1{font-size:1.65rem}
  .hero-stats{gap:1.25rem}
  .hero-search{max-width:100%}
  .tool-page-header{padding:1.2rem 1.1rem}
  .tool-page-title{font-size:1.3rem}
}
@media(max-width:576px){
  .hero-stats{gap:1rem}
  .hero-stat-num{font-size:1.25rem}
  .tool-card{padding:.75rem .875rem}
  .tool-ico{width:36px;height:36px;font-size:1rem}
  .cat-title{font-size:.95rem}
  .brand-icon{width:26px;height:26px;font-size:.58rem}
  .site-logo{height:34px;max-width:170px}
  .footer-brand .site-logo{height:38px;max-width:190px}
}
@media(prefers-reduced-motion:reduce){
  .tool-card,.btn-accent,.hero-search button,.nav-pill{transition:none!important}
  .hero,.cat-section,.tool-col{animation:none!important}
}

/* ── Smooth public animations ─────────────────────── */
.hero{animation:fadeUp .55s cubic-bezier(.22,1,.36,1) both}
.cat-section{animation:fadeUp .5s cubic-bezier(.22,1,.36,1) both}
.tool-col{animation:fadeUp .45s cubic-bezier(.22,1,.36,1) both}
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.tool-card{transition:transform .28s cubic-bezier(.22,1,.36,1),box-shadow .28s,border-color .28s}
.tool-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.nav-pill{transition:background .2s,color .2s,transform .2s}
.nav-pill:hover{transform:translateY(-1px)}
.topbar{transition:box-shadow .25s}
.breadcrumb a{transition:color .15s}

/* ── Pagination (blog & lists) ──────────────────── */
.blog-pagination .pagination-nav{
  display:flex;
  justify-content:center;
}
.blog-pagination .pagination-nav > .d-none.flex-sm-fill{
  flex:1;
  justify-content:center!important;
}
.blog-pagination .pagination-nav > .d-none.flex-sm-fill > div:last-child{
  margin-left:auto;
}
.pagination .page-link{
  color:var(--blue);
  border-color:var(--line);
  font-family:var(--font-heading);
  font-weight:600;
  font-size:.85rem;
  min-width:2.25rem;
  text-align:center;
  transition:background .15s,color .15s,border-color .15s;
}
.pagination .page-link.pagination-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.45rem .65rem;
}
.pagination .page-item.active .page-link{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}
.pagination .page-link:hover{
  background:var(--blue-soft);
  border-color:var(--blue);
  color:var(--blue-hover);
}
.pagination .page-item.disabled .page-link{
  color:var(--muted-2);
  background:var(--line-2);
}

/* ── Tech Vanta LLC ─────────────────────────────── */
.footer-maintainer{
  font-size:.82rem;line-height:1.6;color:var(--muted);margin:.75rem 0;
}
.footer-built-by{
  display:inline-block;font-size:.82rem;font-weight:600;
  color:var(--blue);text-decoration:none;
}
.footer-built-by:hover{color:var(--orange)}
.footer-tv-tagline{font-size:.78rem;color:var(--muted);line-height:1.5}
.tv-cta{
  background:var(--gradient-soft);
  border:1px solid var(--line);
}
.tv-cta-title{
  font-size:clamp(1.05rem,2.5vw,1.35rem);
  font-weight:700;letter-spacing:-.02em;margin-bottom:.5rem;
}
.tv-cta-desc{
  font-size:.9rem;color:var(--muted);max-width:62ch;margin-bottom:0;
}
.tv-about-note p{font-size:.92rem;line-height:1.65;color:var(--ink-2)}
.html-sitemap-link{
  display:block;padding:.45rem .65rem;border-radius:8px;
  font-size:.85rem;font-weight:500;color:var(--ink-2);
  text-decoration:none;background:var(--surface);border:1px solid var(--line);
}
.html-sitemap-link:hover{border-color:var(--blue);color:var(--blue)}
.html-sitemap-list{
  list-style:none;padding:0;margin:0;columns:2;column-gap:2rem;
}
.html-sitemap-list li{margin-bottom:.45rem}
.html-sitemap-list a{
  color:var(--blue);text-decoration:none;font-weight:500;font-size:.88rem;
}
.html-sitemap-list a:hover{color:var(--orange)}
@media(max-width:576px){.html-sitemap-list{columns:1}}
