/*
Theme Name: VibeCam
Theme URI: https://vibecam.site
Author: Lloyd Media Lab
Author URI: https://lloydmedialab.co.za
Description: Custom dark theme for VibeCam — random video chat review and affiliate site. Features platform matcher, comparison tables, affiliate CTAs, and "Start Chatting" button on every post.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: vibecam
*/

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:   #0A0E1A;
  --navy2:  #111827;
  --navy3:  #1C2333;
  --cyan:   #00D4FF;
  --cyan2:  #00AACF;
  --gold:   #FFB800;
  --white:  #F0F4FF;
  --slate:  #8B9DC3;
  --slate2: #4A5578;
  --green:  #00E676;
  --red:    #FF5252;
  --radius: 12px;
  --radius2: 8px;
  --max-w: 1100px;
  --max-w-post: 780px;
}

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.2rem; color: var(--slate); }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; transition: color 0.2s; }

ul, ol { padding-left: 1.4rem; color: var(--slate); }
li { margin-bottom: 0.4rem; }

strong { color: var(--white); font-weight: 600; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 72px 0; }
.section--dark { background: var(--navy2); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--cyan2);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--slate2);
  color: var(--slate);
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 10px;
}

/* ── Start Chatting CTA (post footer) ──────────────────────── */
.start-chatting-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,212,255,0.04) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin: 52px 0 0;
}

.start-chatting-cta .cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}

.start-chatting-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}

.start-chatting-cta p {
  font-size: 0.9rem;
  margin-bottom: 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(10,14,26,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,255,0.07);
}

.site-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.site-logo span { color: var(--cyan); }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav-menu li { margin: 0; }

.nav-menu a {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }

.nav-menu .nav-cta {
  background: var(--cyan);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.nav-menu .nav-cta:hover { background: var(--cyan2); color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Page push ──────────────────────────────────────────────── */
.page-push { padding-top: 64px; }

/* ── Section labels ─────────────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}

.section-sub {
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
  font-size: 1rem;
}

/* ── Eyebrow / badge ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Tags ───────────────────────────────────────────────────── */
.tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
}
.tag-free  { background: rgba(0,230,118,0.12); color: var(--green); }
.tag-18    { background: rgba(255,82,82,0.12); color: var(--red); }
.tag-safe  { background: rgba(0,212,255,0.12); color: var(--cyan); }
.tag-girls { background: rgba(255,184,0,0.12); color: var(--gold); }
.tag-group { background: rgba(139,157,195,0.15); color: var(--slate); }
.tag-anon  { background: rgba(139,157,195,0.15); color: var(--slate); }

/* ── Card grid ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Post / review card */
.post-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
}

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy3);
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
  display: block;
}

.post-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
  display: block;
  text-decoration: none;
}
.post-card-title:hover { color: var(--cyan); }

.post-card-excerpt {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.post-card-meta {
  font-size: 0.75rem;
  color: var(--slate2);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Comparison table ───────────────────────────────────────── */
.table-wrap { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.comparison-table thead th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.comparison-table thead th:first-child { padding-left: 0; }

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.comparison-table tbody td {
  padding: 16px;
  font-size: 0.875rem;
  vertical-align: middle;
}
.comparison-table tbody td:first-child { padding-left: 0; }

.tbl-platform-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  color: var(--white);
}
.tbl-platform-type {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 2px;
  display: block;
}

.stars { color: var(--gold); letter-spacing: 1px; }
.check { color: var(--green); }
.cross { color: var(--slate2); }

.badge-top {
  display: inline-block;
  background: rgba(255,184,0,0.15);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Matcher ────────────────────────────────────────────────── */
.matcher-box {
  background: var(--navy2);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 16px;
  padding: 36px;
}

.matcher-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 14px;
  display: block;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  background: var(--navy3);
  border: 1.5px solid var(--slate2);
  color: var(--slate);
  padding: 9px 17px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.18s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover {
  border-color: var(--cyan);
  color: var(--white);
}
.filter-btn.active {
  background: rgba(0,212,255,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
  font-weight: 600;
}

.matcher-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 24px 0;
}

.result-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg,rgba(0,212,255,.08) 0%,rgba(0,212,255,.02) 100%);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  animation: fadeUp .3s ease;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

.result-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: .5;
  min-width: 32px;
}

.result-info { flex: 1; }
.result-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 3px;
}
.result-desc { font-size: 0.82rem; color: var(--slate); }

.result-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }

.result-cta {
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.result-cta:hover { background: var(--cyan2); transform: translateY(-1px); color: var(--navy); }

.more-results { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }

.result-card-sm {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius2);
  padding: 13px 17px;
  transition: border-color .2s;
}
.result-card-sm:hover { border-color: var(--slate2); }

.result-cta-sm {
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 15px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.result-cta-sm:hover { background: rgba(0,212,255,.1); color: var(--cyan); }

/* ── Single post styles ─────────────────────────────────────── */
.post-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.post-cat-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  padding: 4px 10px;
  border-radius: 4px;
}
.post-cat-link:hover { background: rgba(0,212,255,.18); color: var(--cyan); }

.post-date {
  font-size: 0.8rem;
  color: var(--slate2);
}

.post-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.post-intro {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.75;
}

.post-featured-img {
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 460px;
}
.post-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Post content area */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 52px 0 80px;
  align-items: start;
}

.post-content {
  min-width: 0;
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--white);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.post-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--white);
}
.post-content p { color: var(--slate); line-height: 1.8; }
.post-content ul, .post-content ol { color: var(--slate); margin-bottom: 1.2rem; }
.post-content li { margin-bottom: 6px; }
.post-content strong { color: var(--white); }
.post-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--cyan2); }

.post-content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 14px 20px;
  background: rgba(0,212,255,0.05);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--slate);
}

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

.sidebar-widget {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}

.sidebar-widget-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  display: block;
}

.sidebar-cta-box {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,212,255,0.03) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-cta-box h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sidebar-cta-box p {
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.sidebar-cta-box .btn { width: 100%; justify-content: center; }

.recent-post-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-thumb {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy3);
}
.recent-post-thumb img { width:100%; height:100%; object-fit:cover; }
.recent-post-info a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
}
.recent-post-info a:hover { color: var(--cyan); }
.recent-post-date { font-size: 0.72rem; color: var(--slate2); }

/* ── Archive / Category ─────────────────────────────────────── */
.archive-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.archive-header h1 { margin-bottom: 10px; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate);
  border: 1.5px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination .page-numbers:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.pagination .page-numbers.current {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

/* ── Disclosure bar ─────────────────────────────────────────── */
.disclosure-bar {
  background: rgba(255,184,0,0.06);
  border-top: 1px solid rgba(255,184,0,0.15);
  border-bottom: 1px solid rgba(255,184,0,0.15);
  padding: 12px 5%;
  font-size: 0.8rem;
  color: var(--slate);
  text-align: center;
}
.disclosure-bar strong { color: var(--gold); }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--cyan); }

.faq-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--slate2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--slate);
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  padding: 56px 5% 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .site-logo { display: inline-block; margin-bottom: 10px; }
.footer-tagline { font-size: 0.82rem; color: var(--slate); max-width: 220px; margin: 0; }

.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col li { margin: 0; }
.footer-col a { font-size: 0.84rem; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--slate2); margin: 0; }
.footer-aff { font-size: 0.73rem; color: var(--slate2); max-width: 480px; text-align: right; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy2); padding: 20px 5%; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 16px; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-cols { gap: 28px; }
  .footer-aff { text-align: left; }
  .result-card { flex-wrap: wrap; }
  .result-cta { width: 100%; text-align: center; margin-top: 8px; }
  .matcher-box { padding: 20px; }
  .start-chatting-cta { padding: 28px 20px; }
}

/* ── WordPress core alignment classes ───────────────────────── */
.aligncenter { display: block; margin: 24px auto; text-align: center; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--slate); text-align: center; margin-top: 6px; }

/* ── Options panel styles (used in admin) ───────────────────── */
.vc-options-note { font-size: 0.82rem; color: #666; margin-top: 4px; }
