/*
Theme Name: SKARINFO
Theme URI: https://skarinfo.com
Author: Souvik Sarkar
Author URI: https://souviksarkar.com
Description: Custom, fast, editorial theme for SKARINFO — a creator-led personal growth, well-being, motivation and AI platform. Minimal premium design, no page-builder bloat. WooCommerce-ready.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skarinfo
Tags: blog, one-column, custom-menu, featured-images, editor-style, translation-ready
*/

/* =========================================================
   SKARINFO — Design System
   Minimal · premium · editorial
   ========================================================= */

:root {
  /* Color — restrained palette, ONE accent */
  --bg:        #FAF7F2;   /* warm off-white */
  --bg-soft:   #F1EBE1;   /* soft warm panel */
  --bg-card:   #FFFFFF;
  --ink:       #17181A;   /* near-black charcoal */
  --ink-soft:  #3D3F43;
  --muted:     #797B80;   /* soft neutral gray */
  --line:      rgba(23,24,26,0.10);
  --line-soft: rgba(23,24,26,0.06);
  --accent:    #10635B;   /* deep teal */
  --accent-ink:#0B4A44;
  --accent-wash:#E7F0EE;

  /* Type */
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Manrope", var(--sans);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 10px;
  --radius-sm: 7px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-soft { background: var(--bg-soft); }

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-head { max-width: 620px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--accent);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: 9px;
}
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.brand span { color: var(--ink); }
.brand-logo { height: 46px; width: 46px; border-radius: 50%; display: block; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; color: var(--ink); }
.footer-brand .brand-logo { height: 58px; width: 58px; }
.footer-brand .brand-name { font-size: 24px; }

/* About page logo lockup */
.about-hero-grid { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-logo { width: 100%; max-width: 240px; height: auto; border-radius: 50%; margin-inline: auto; }
@media (max-width: 720px){ .about-hero-grid { grid-template-columns: 1fr; text-align: left; } .about-logo { max-width: 150px; margin-inline: 0; } }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: 15px;
  color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 90;
  background: var(--bg);
  padding: 24px var(--gutter) 48px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--display); font-weight: 600; font-size: 24px;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink);
}
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(56px, 9vw, 110px) clamp(48px, 7vw, 90px); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6.6vw, 76px); line-height: 1.02; letter-spacing: -0.035em;
}
.hero h1 .accent { color: var(--accent); }
.hero .lead {
  font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft);
  margin-top: 24px; max-width: 30ch;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-figure {
  position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: var(--bg-soft);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 16px; font-family: var(--display);
  font-weight: 600; font-size: 14px;
}
.hero-badge b { display: block; font-size: 20px; letter-spacing: -0.02em; }
.hero-badge span { color: var(--muted); font-weight: 500; }

/* ---------- Hero: centered, no image ---------- */
.hero--center { text-align: center; padding-block: clamp(76px, 11vw, 150px) clamp(56px, 8vw, 104px); position: relative; }
.hero-inner { max-width: 880px; margin-inline: auto; position: relative; z-index: 1; }
.hero--center h1 { font-size: clamp(44px, 8vw, 88px); line-height: 1.0; letter-spacing: -0.04em; }
.hero--center .lead { margin: 26px auto 0; max-width: 60ch; font-size: clamp(18px, 2.1vw, 21px); }
.cta-row--center { justify-content: center; }
.hero-flow {
  display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-top: 40px; padding: 12px 22px; border: 1px solid var(--line); border-radius: 100px;
  font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: var(--ink-soft);
  background: var(--bg-card);
}
.hero-flow i { color: var(--accent); font-style: normal; font-weight: 700; }
/* faint brand dot backdrop */
.hero--center::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--line) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, transparent 70%);
  opacity: 0.6;
}

/* ---------- Pillars ---------- */
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.pillar {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(23,24,26,0.28);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.pillar .num {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  color: var(--accent); letter-spacing: 0.08em;
}
.pillar h3 { font-size: 20px; margin: 18px 0 10px; }
.pillar p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ---------- Cards (ideas / articles) ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px;
}
.card {
  display: flex; flex-direction: column;
  background: transparent; border-radius: var(--radius);
}
.card-media {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft); margin-bottom: 18px;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card .tag {
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.card h3 {
  font-size: 21px; line-height: 1.25; margin: 12px 0 10px;
  transition: color .2s var(--ease);
}
.card:hover h3 { color: var(--accent-ink); }
.card p { color: var(--muted); font-size: 15.5px; }
.card .meta {
  margin-top: 14px; display: flex; gap: 14px; align-items: center;
  font-size: 13.5px; color: var(--muted); font-family: var(--display); font-weight: 500;
}
.card .meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.card--feature { grid-column: span 3; }
@media (min-width: 861px){
  .card--feature {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  }
  .card--feature .card-media { aspect-ratio: 16/11; margin-bottom: 0; }
  .card--feature h3 { font-size: clamp(26px, 3vw, 34px); }
  .card--feature p { font-size: 17px; }
}

/* ---------- Filter pills ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  padding: 9px 17px; border-radius: 100px; border: 1px solid var(--line);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all .22s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -26px rgba(23,24,26,0.3); }
.product-cover { aspect-ratio: 3/2; background: var(--bg-soft); overflow: hidden; }
.product-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 20px; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: 15px; flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
}
.price { font-family: var(--display); font-weight: 700; font-size: 20px; }
.price .old { color: var(--muted); font-weight: 500; font-size: 15px; text-decoration: line-through; margin-left: 6px; }

/* ---------- Empty / coming-soon state ---------- */
.empty-state {
  max-width: 620px; margin-inline: auto; text-align: center;
  border: 1px dashed var(--line); border-radius: 18px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  background: var(--bg-card);
}
.empty-badge {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-wash);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
}
.empty-state h2 { font-size: clamp(24px, 3.4vw, 36px); }
.empty-state p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ---------- Newsletter block ---------- */
.newsletter {
  background: var(--ink); color: var(--bg);
  border-radius: 18px; padding: clamp(36px, 5vw, 64px);
  text-align: center;
}
.newsletter h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.newsletter p { color: rgba(250,247,242,0.7); margin: 14px auto 0; max-width: 46ch; }
.subscribe {
  display: flex; gap: 10px; max-width: 480px; margin: 30px auto 0; flex-wrap: wrap;
}
.subscribe input {
  flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06);
  color: #fff; font-size: 15px;
}
.subscribe input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe input:focus { outline: none; border-color: var(--accent); }
.newsletter small { display: block; margin-top: 16px; color: rgba(250,247,242,0.5); font-size: 13px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--display); font-weight: 600; font-size: 14px; }
.field input, .field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg-card); font-size: 16px; transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }

/* ---------- Article (prose) ---------- */
.article-head { max-width: 760px; margin-inline: auto; text-align: center; }
.breadcrumb {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.article-head h1 { font-size: clamp(32px, 5vw, 54px); }
.article-head .sub { font-size: 20px; color: var(--muted); margin-top: 18px; }
.byline {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 28px; font-family: var(--display); font-size: 14.5px;
}
.byline img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.byline .who b { display: block; font-weight: 600; }
.byline .who span { color: var(--muted); }
.article-hero {
  aspect-ratio: 16/8; border-radius: 16px; overflow: hidden; margin: clamp(32px,5vw,52px) 0;
  background: var(--bg-soft);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 720px; margin-inline: auto; font-family: var(--serif); font-size: 19.5px; line-height: 1.78; color: var(--ink-soft); }
.prose > * + * { margin-top: 26px; }
.prose h2 { font-family: var(--display); font-size: 28px; color: var(--ink); margin-top: 48px; }
.prose h3 { font-family: var(--display); font-size: 22px; color: var(--ink); margin-top: 36px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--accent); padding-left: 22px; font-style: italic;
  color: var(--ink); font-size: 22px;
}
.prose ul { list-style: disc; padding-left: 24px; }
.prose ul li + li { margin-top: 10px; }
.prose strong { color: var(--ink); font-weight: 600; }

.reading-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* prev/next */
.prevnext {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 760px; margin: 56px auto 0;
}
.prevnext a {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.prevnext a:hover { border-color: var(--ink); transform: translateY(-2px); }
.prevnext .lbl { font-family: var(--display); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.prevnext .t { font-family: var(--display); font-weight: 600; margin-top: 6px; }
.prevnext .next { text-align: right; }

/* ---------- Page hero (generic) ---------- */
.page-hero { padding-block: clamp(56px, 8vw, 96px) clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 64px); max-width: 16ch; }
.page-hero p { font-size: 20px; color: var(--muted); margin-top: 20px; max-width: 54ch; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(48px,6vw,80px) 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px;
}
.footer-brand .brand { font-size: 22px; }
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 30ch; font-size: 15px; }
.footer-col h4 { font-family: var(--display); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 6px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 14px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; transition: all .22s var(--ease);
}
.footer-bottom .socials a:hover { border-color: var(--ink); color: var(--accent); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 48px; }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px){
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; order: -1; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .pillar-grid, .card-grid, .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prevnext { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   WordPress-specific styles
   ========================================================= */
.wp-block-image img, .alignwide, .alignfull { border-radius: var(--radius); }
.prose img { border-radius: var(--radius); margin-block: 28px; }
.prose figure { margin-block: 28px; }
.prose figcaption { font-family: var(--sans); font-size: 14px; color: var(--muted); text-align: center; margin-top: 10px; }
.sticky, .bypostauthor { display: block; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -9999px; z-index: 999; }
.skip-link:focus {
  left: 16px; top: 12px; background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; font-family: var(--display); font-weight: 600;
}
.wp-pagenavi, .pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers {
  font-family: var(--display); font-weight: 600; font-size: 15px; padding: 9px 16px;
  border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); transition: all .2s var(--ease);
}
.pagination .page-numbers.current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pagination a.page-numbers:hover { border-color: var(--ink); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px){ .admin-bar .site-header { top: 46px; } }
.comment-list { list-style: none; padding: 0; }
