/*
Theme Name: LovinSK
Theme URI: https://lovinsk.com/
Author: OpenAI Codex
Description: Editorial WordPress theme based on the approved LovinSK mock.
Version: 0.2.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: lovinsk
*/

/* ─── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Design tokens ────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --paper:        #f8f8f6;
  --ink:          #18181b;
  --ink-light:    #52525b;
  --border:       #e4e4e7;
  --accent:       #e5005b;
  --accent-hover: #a00040;
  --accent-soft:  #fff1f6;

  --max:     1120px;
  --measure:  720px;
  --radius:   6px;

  --serif: "Lora", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   clamp(24px, 2vw + 16px, 36px);
  --fs-xl:   clamp(30px, 3vw + 18px, 48px);
}

/* ─── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ─── Reading progress bar (article page only) ─────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ─── Layout helper ────────────────────────────────────────────── */
.wrap {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
}

/* ─── Site header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark-image {
  overflow: hidden;
  border: 0;
  background: #fff;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand .brand-name-accent {
  color: var(--accent);
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.nav-toggle svg { display: block; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 10px calc((100% - min(var(--max), 100% - 48px)) / 2 + 24px);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-light);
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--ink);
  border-left-color: var(--accent);
  background: var(--paper);
}

/* ─── Eyebrow label ────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── HOME: Hero ───────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: clamp(400px, 55svh, 540px);
  overflow: hidden;
  isolation: isolate;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.home-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%, transparent),
    linear-gradient(to top,   rgba(0,0,0,.40) 0%, transparent 50%);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(36px, 6vw, 60px);
  min-height: inherit;
  color: #fff;
  animation: rise-in 600ms ease-out both;
}

.home-hero-copy .wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-hero .eyebrow { color: rgba(255,255,255,.7); }

.home-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
}

/* ─── AD SLOTS ──────────────────────────────────────────────────── */
.ad-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink-light);
  font-family: var(--sans);
}

.ad-slot-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0.5;
}

/* In-content rectangle: 300×250 centered */
.ad-slot-image {
  width: min(100%, 300px);
  aspect-ratio: 6 / 5;
  margin: 32px auto;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e5e4 100%);
}

.ad-slot-image .ad-inner-text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-light);
  opacity: 0.6;
}

.ad-slot-image .ad-size {
  font-size: 11px;
  color: var(--ink-light);
  opacity: 0.4;
}

.ad-slot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Leaderboard / banner: full width, 90px tall */
.ad-slot-banner {
  width: 100%;
  height: 90px;
  margin-block: 32px;
  background: linear-gradient(90deg, #f5f5f4 0%, #ede9e6 50%, #f5f5f4 100%);
  flex-direction: row;
  gap: 12px;
}

.ad-slot-banner .ad-inner-text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-light);
  opacity: 0.6;
}

.ad-slot-banner .ad-size {
  font-size: 11px;
  color: var(--ink-light);
  opacity: 0.4;
}

/* Native ad card (looks like a post-card with Sponsored label) */
.ad-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  padding-bottom: 16px;
  min-height: 100%;
}

.ad-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: var(--border);
  padding: 3px 8px;
  border-radius: 999px;
  width: fit-content;
}

.ad-card-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e7e5e4, #d6d3d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: var(--fs-sm);
  opacity: 0.5;
}

.ad-card-body {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-card-body p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ad-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

/* ─── HOME: Featured post ──────────────────────────────────────── */
.home-content { padding-block: clamp(48px, 7vw, 80px); }

.home-feed-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.home-feed-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-weight: 700;
}

.view-all {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.view-all:hover { color: var(--accent-hover); }

/* Feature card */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.feature-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card-image:hover img { transform: scale(1.03); }

.feature-card-meta { display: flex; flex-direction: column; gap: 12px; }

.feature-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.5vw + 12px, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.feature-card h3 a:hover { color: var(--accent); }

.feature-card p {
  margin: 0;
  color: var(--ink-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ─── Post grid ────────────────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card-thumb:hover img { transform: scale(1.04); }

.post-card-body { display: flex; flex-direction: column; gap: 6px; }

.post-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-md);
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card h3 a:hover { color: var(--accent); }

.post-card p {
  margin: 0;
  color: var(--ink-light);
  font-size: var(--fs-sm);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Inline tag links inside cards */
.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.inline-tags a {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-light);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 9px;
  transition: all 0.15s;
}

.inline-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ─── Post meta / term link shared ────────────────────────────── */
.term-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.term-link:hover { color: var(--accent-hover); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-light);
}

.post-meta-dot {
  color: var(--border);
}

/* ─── Pagination ───────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-light);
}

.pagination a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.15s;
}

.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── ARTICLE PAGE ─────────────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumb-inner::-webkit-scrollbar { display: none; }

.breadcrumb-inner a {
  color: var(--ink-light);
  transition: color 0.15s;
}
.breadcrumb-inner a:hover { color: var(--accent); }

.breadcrumb-sep {
  color: var(--border);
  font-size: 10px;
}

.breadcrumb-current { color: var(--ink); }

/* Article shell */
.article-wrap {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: 60px;
}

/* Article header */
.article-header {
  max-width: var(--measure);
  margin-inline: auto;
}

.article-header h1 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.article-deck {
  margin: 18px 0 0;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--ink-light);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-light);
}

/* Feature image */
.article-feature {
  margin: clamp(32px, 5vw, 52px) 0 0;
}

.article-feature img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-toc {
  max-width: 680px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--sans);
}

.article-toc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}

.article-toc-label:hover {
  color: var(--accent-hover);
}

.article-toc-label::-webkit-details-marker {
  display: none;
}

.article-toc-label::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.article-toc[open] .article-toc-label::after {
  content: "-";
}

.article-toc ol {
  display: block;
  grid-template-columns: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc li {
  margin: 0 0 9px;
  min-width: 0;
}

.article-toc li:last-child {
  margin-bottom: 0;
}

.article-toc a {
  display: inline;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.15s;
}

.article-toc a:hover {
  color: var(--accent);
}

.article-toc .is-subitem {
  padding-left: 18px;
  position: relative;
}

.article-toc .is-subitem::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.25em;
  bottom: 0.25em;
  width: 2px;
  background: var(--border);
}

.article-toc .is-subitem a {
  color: var(--ink-light);
  font-weight: 500;
}

/* Article body */
.article-body {
  max-width: var(--measure);
  margin: clamp(36px, 5vw, 56px) auto 0;
  font-family: var(--serif);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.article-body p { margin: 0 0 1.4em; }

.article-body h2 {
  margin: 2em 0 0.6em;
  font-family: var(--sans);
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.article-body h3 {
  margin: 1.6em 0 0.5em;
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--ink);
}

.article-body blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: calc(var(--fs-base) * 1.2);
  line-height: 1.5;
  color: var(--accent-hover);
}

.article-inline-ad {
  margin: 32px auto;
}

/* Tags */
.article-tags {
  max-width: var(--measure);
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tags-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-right: 4px;
}

.tag-pill {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-light);
  transition: all 0.15s;
}
.tag-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.inline-tags a {
  color: var(--ink-light);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.inline-tags a::before {
  content: "#";
  color: var(--accent);
  margin-right: 1px;
}

.inline-tags a:hover {
  color: var(--accent);
}

/* Read next */
.read-next {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 64px);
}

.read-next-header {
  margin-bottom: 28px;
}

.read-next-header h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: 700;
}

.read-next-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ─── ARCHIVE (tag) PAGE ───────────────────────────────────────── */
.archive-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.archive-header-inner {
  padding-block: clamp(48px, 7vw, 80px);
}

.archive-header h1 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.1;
}

.archive-header p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--ink-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* Archive body: sidebar + feed */
.archive-content {
  padding-block: clamp(40px, 6vw, 64px);
}

.archive-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

/* Sidebar */
.topic-sidebar {
  position: sticky;
  top: 80px;
}

.topic-sidebar-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 14px;
}

.topic-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topic-sidebar-list a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-light);
  transition: all 0.15s;
}

.topic-sidebar-list a:hover {
  background: var(--paper);
  color: var(--ink);
}

.topic-sidebar-list a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

/* Archive feed */
.archive-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.archive-card-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.archive-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-card-thumb:hover img { transform: scale(1.04); }

.archive-card-body { display: flex; flex-direction: column; gap: 8px; }

.archive-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-md);
  line-height: 1.25;
}

.archive-card h3 a:hover { color: var(--accent); }

.archive-card p {
  margin: 0;
  color: var(--ink-light);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #111112;
  color: rgba(255,255,255,0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col-brand .footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.footer-col-brand p {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s;
}

.footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social svg [stroke] {
  stroke: currentColor;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  max-width: min(100%, 620px);
}

/* ─── Editorial Hero (Magazine Grid) ──────────────────────────── */
.editorial-hero-wrap {
  padding-block: clamp(20px, 3vw, 36px) 0;
  background: var(--bg);
}

.editorial-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: clamp(380px, 50vw, 560px);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Main story: spans both rows on left */
.editorial-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  display: block;
  background: #111;
}

.editorial-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-main:hover img { transform: scale(1.04); }

.editorial-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
}

.editorial-main-copy {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 32px);
}

.editorial-main-copy h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw + 10px, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 8px 0 10px;
}

.editorial-main-copy p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Side stories: two stacked on right */
.editorial-side-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111;
}

.editorial-side-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.editorial-side-card:hover img { transform: scale(1.05); }

.editorial-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 100%
  );
}

.editorial-side-copy {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
}

.editorial-side-copy h3 {
  font-family: var(--serif);
  font-size: clamp(14px, 0.9vw + 9px, 17px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 6px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Shared: category eyebrow badge on dark bg */
.editorial-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 3px 8px;
}

/* Shared: meta on dark background */
.editorial-meta {
  color: rgba(255,255,255,0.45) !important;
  font-size: 11px;
}

/* Responsive */
@media (max-width: 860px) {
  .editorial-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 180px 180px;
    height: auto;
  }
  .editorial-main { grid-row: auto; }
}

@media (max-width: 600px) {
  .editorial-hero {
    grid-template-rows: 240px 160px 160px;
    border-radius: 0;
  }
  .editorial-hero-wrap { padding-block: 0; }
}

/* ─── POST-TAG (WordPress Tag Archive) ────────────────────────── */
.post-tag-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.post-tag-header-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(32px, 5vw, 52px);
}

.post-tag-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-tag-type-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  flex-shrink: 0;
}

.post-tag-name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw + 14px, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.post-tag-count {
  flex-shrink: 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-light);
  margin: 0;
}

/* Article list */
.post-tag-content {
  padding-block: clamp(36px, 5vw, 56px);
}

.post-tag-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tag-list-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.tag-list-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}

.tag-list-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tag-list-card-thumb:hover img { transform: scale(1.04); }

.tag-list-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-list-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-list-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.2vw + 12px, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tag-list-card h2 a:hover { color: var(--accent); }

.tag-list-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-light);
  line-height: 1.6;
}

/* Related tags at bottom */
.related-tags {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.related-tags-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 14px;
}

.related-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-light);
  transition: all 0.15s;
}

.tag-pill-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

@media (max-width: 680px) {
  .post-tag-header-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .tag-list-card { grid-template-columns: 120px 1fr; gap: 16px; }
}

/* ─── Load more / Infinite scroll ─────────────────────────────── */
.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: var(--ink);
  color: #fff;
}

.load-more-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.load-more-count {
  font-size: var(--fs-xs);
  color: var(--ink-light);
}

.load-more-end {
  display: none;
  font-size: var(--fs-sm);
  color: var(--ink-light);
  text-align: center;
}

/* Spinner */
.spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Card fade-in when appended */
@keyframes card-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.post-card.is-new {
  animation: card-in 0.35s ease-out both;
}

/* ─── Tag page: featured article ─────────────────────────────── */
.tag-featured {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.tag-featured-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}

.tag-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tag-featured-image:hover img { transform: scale(1.03); }

.tag-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.tag-featured-badge .pinned-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
}

.tag-featured h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw + 12px, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.tag-featured h2 a:hover { color: var(--accent); }

.tag-featured p {
  margin: 0 0 16px;
  font-size: var(--fs-sm);
  color: var(--ink-light);
  line-height: 1.6;
}

/* Tag archive grid */
.tag-grid-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.tag-grid-header h3 {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
}

.tag-article-count {
  font-size: var(--fs-xs);
  color: var(--ink-light);
}

@media (max-width: 860px) {
  .tag-featured { grid-template-columns: 1fr; }
}

/* ─── Animation ────────────────────────────────────────────────── */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-toggle  { display: block; }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .archive-layout {
    grid-template-columns: 1fr;
  }

  .topic-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .topic-sidebar-label { margin: 0; white-space: nowrap; }

  .topic-sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .topic-sidebar-list a {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
  }

  .topic-sidebar-list a[aria-current="page"] {
    border-color: transparent;
  }

  .read-next-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .wrap,
  .article-wrap { width: min(100% - 32px, var(--max)); }

  .site-header-inner { width: min(100% - 32px, var(--max)); }

  .home-hero { min-height: 380px; }

  .post-grid { grid-template-columns: 1fr; }

  .feature-card { gap: 16px; }

  .archive-card {
    grid-template-columns: 120px 1fr;
    gap: 14px;
  }

  .article-header h1 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .article-body {
    font-size: var(--fs-base);
    line-height: 1.75;
  }

  .article-toc {
    padding: 16px;
  }

  .read-next-grid { grid-template-columns: 1fr; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ─── Page (page.php) ──────────────────────────────────────────── */
.page-wrap {
  padding-block: clamp(48px, 6vw, 80px);
}

.page-header {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw + 14px, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}

.page-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--ink);
}

.page-body h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.4vw + 12px, 26px);
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.page-body p { margin: 0 0 20px; }

.page-body ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.page-body ul li { margin-bottom: 8px; }

.page-contact-card {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.page-contact-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 8px;
}

.page-contact-card p { margin: 0 0 12px; font-size: var(--fs-sm); }

.page-contact-link {
  display: inline-block;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.15s;
}
.page-contact-link:hover { border-color: var(--accent); }

/* ─── 404 ──────────────────────────────────────────────────────── */
.not-found-wrap {
  padding-block: clamp(48px, 6vw, 80px);
}

.not-found-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.not-found-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.not-found-code {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--border);
  display: block;
}

.not-found-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw + 14px, 32px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.not-found-desc {
  max-width: 480px;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-light);
  line-height: 1.65;
}

.not-found-home-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}

.not-found-home-btn:hover {
  background: var(--ink);
  color: #fff;
}

.not-found-section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 20px;
}

.not-found-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.not-found-topic-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all 0.2s;
}

.not-found-topic-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.not-found-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-topic-name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--ink);
}

.not-found-topic-count {
  font-size: var(--fs-xs);
  color: var(--ink-light);
}

@media (max-width: 680px) {
  .not-found-topic-grid { grid-template-columns: repeat(2, 1fr); }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
  z-index: 60;
}

.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WordPress content helpers */
.article-body > *:first-child,
.page-body > *:first-child {
  margin-top: 0;
}

.article-body ul,
.article-body ol,
.page-body ul,
.page-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.25em;
}

.article-body li,
.page-body li {
  margin-bottom: 0.5em;
}

.article-body img,
.page-body img {
  height: auto;
  border-radius: var(--radius);
}

.article-body .wp-block-image,
.page-body .wp-block-image {
  margin: 2em 0;
}

.article-body .wp-block-image figcaption,
.page-body .wp-block-image figcaption {
  margin-top: 10px;
  font-size: var(--fs-xs);
  color: var(--ink-light);
  text-align: center;
}

.article-body .wp-block-table,
.page-body .wp-block-table {
  margin: 2em 0;
  overflow-x: auto;
}

.article-body table,
.page-body table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--ink);
}

.article-body th,
.article-body td,
.page-body th,
.page-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.article-body th,
.page-body th {
  background: var(--paper);
  font-weight: 700;
}

.article-body tbody tr:nth-child(even),
.page-body tbody tr:nth-child(even) {
  background: rgba(248, 248, 246, 0.55);
}

.article-body .wp-block-table figcaption,
.page-body .wp-block-table figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  color: var(--ink-light);
  text-align: center;
}

.article-body a,
.page-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(229, 0, 91, 0.18);
  text-underline-offset: 2px;
}

.article-body a:hover,
.page-body a:hover {
  color: var(--accent-hover);
}

.article-body a.load-more-btn,
.page-body a.load-more-btn {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-decoration-color: transparent;
}

.article-body a.load-more-btn:hover,
.page-body a.load-more-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.lovinsk-cta .load-more-btn {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.lovinsk-cta .load-more-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.lovinsk-cta {
  margin: 2em 0;
}

.lovinsk-cta .lovinsk-cta-actions {
  margin-top: 1.4em;
}

.lovinsk-cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lovinsk-cta .wp-block-button__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.load-more-wrap .next,
.load-more-wrap .prev,
.load-more-wrap .load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.load-more-wrap .next:hover,
.load-more-wrap .prev:hover,
.load-more-wrap .load-more-btn:hover {
  background: var(--ink);
  color: #fff;
}
