/*
 * main.css — BrandName Golf Theme
 * ─────────────────────────────────────────────────────────
 * Shared styles loaded on every page:
 *   - CSS reset
 *   - :root design tokens (colors, fonts, sizing)
 *   - Body & base typography
 *   - Site header (sticky, logo, nav, lang selector,
 *                  social icons, hamburger, mobile nav)
 *   - Reading progress bar
 *   - Site footer (3-column dark layout, bottom bar)
 *   - Shared utility classes (section-label, btn patterns,
 *                             panel, ed-panel, cat-tag)
 *   - Full responsive breakpoints for header & footer
 * ─────────────────────────────────────────────────────────
 */

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ════════════════════════════════════════
   ROOT DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --color-bg:           #ffffff;
  --color-text:         #000000;
  --color-text-muted:   #000000;
  --color-border:       #e5e7eb;
  --color-accent:       #e84012;
  --color-accent-hover: #1e40af;
  --font-en:            'Figtree', sans-serif;
  --font-ar:            'Tajawal', sans-serif;
  --header-height:      72px;
  --max-width:          3000px;
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

[dir="rtl"] body { font-family: var(--font-ar); }

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

a { color: inherit; }

/* ════════════════════════════════════════
   READING PROGRESS BAR
   Visible only on singular posts via single.css override.
   Here it is hidden by default.
════════════════════════════════════════ */
.read-progress-bar {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  height: 3px;
  background: #f3f4f6;
  z-index: 999;
  display: none; /* shown in single.css */
}

.read-progress-fill {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════ */
.site-header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* ── Logo ── */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img { height: 40px; width: auto; }

.logo-mark {
  width: 40px; height: 40px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.logo-mark svg {
  width: 22px; height: 22px;
  fill: none; stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.logo-text {
  font-size: 1.25rem; font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--color-accent); }

/* ── Desktop Nav ── */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list li { display: block; }

.nav-list a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
  color: var(--color-accent);
  background: #eff6ff;
}

/* ── Right cluster ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* ── Language selector ── */
.lang-selector {
  display: flex; align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 3px; gap: 2px;
}

.lang-btn {
  border: none; background: transparent; cursor: pointer;
  font-size: 0.8125rem; font-weight: 600;
  padding: 5px 13px; border-radius: 6px;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.4px;
  font-family: inherit;
}

.lang-btn.active {
  background: #ffffff;
  color: var(--color-accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover:not(.active) { color: var(--color-text); }

/* ── Divider ── */
.header-divider {
  width: 1px; height: 24px;
  background: var(--color-border);
}

/* ── Social icons ── */
.social-links {
  display: flex; align-items: center; gap: 2px;
}

.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: var(--color-accent);
  background: #eff6ff;
}

/* ── Mobile hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none; background: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover { background: #f3f4f6; }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.mobile-nav.open { display: block; }

.mobile-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.mobile-nav .nav-list a {
  width: 100%;
  font-size: 1rem;
}

/* ── Header responsive ── */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }
}

@media (max-width: 600px) {
  .site-header   { padding: 0 20px; }
  .social-links  { display: none; }
  .header-divider{ display: none; }
}

/* ════════════════════════════════════════
   SITE FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  width: 100%;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px 0;
}

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

/* ── Col 1 — Brand ── */
.footer-brand {}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 18px;
}

.footer-logo__mark {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-logo__mark svg {
  width: 18px; height: 18px;
  stroke: #000; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.footer-logo__text {
  font-size: 1.125rem; font-weight: 700;
  color: #fff;
}

.footer-logo__text span { color: #f0c93a; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65; margin-bottom: 28px;
  max-width: 280px;
}

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

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: #fff; color: #000; border-color: #fff;
}

/* ── Col 2 & 3 ── */
.footer-col-title {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 2px;
}

.footer-links a {
  font-size: 0.9375rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.2s;
}

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

/* ── Bottom bar ── */
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap; gap: 12px;
}

.footer-bottom__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__legal { display: flex; gap: 20px; }

.footer-bottom__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom__legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── Footer responsive ── */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-inner { padding: 48px 20px 0; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════
   SHARED UTILITY CLASSES
════════════════════════════════════════ */

/* Section label with left accent line */
.section-label {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent);
  display: flex; align-items: center; gap: 10px;
}

.section-label::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--color-accent); border-radius: 2px;
}

.section-view-all {
  font-size: 0.8125rem; font-weight: 500;
  color: #000000;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.section-view-all:hover { opacity: 1; }

.section-view-all svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Category tag (used in hero and cards) */
.cat-tag {
  display: inline-block;
  padding: 5px 14px; border-radius: 4px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  background: var(--color-accent); color: #ffffff;
  transition: background 0.2s;
}

.cat-tag:hover { background: var(--color-accent-hover); }

.cat-tag.cat-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.cat-tag.cat-outline:hover { background: rgba(255, 255, 255, 0.15); }

/* Read more button */
.btn-read-more {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: #ffffff; color: #000000;
  font-family: inherit;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-read-more:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-read-more svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}

.btn-read-more:hover svg { transform: translateX(3px); }

/* Generic panel (bordered card container) */
.panel {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.panel__title {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #000;
}

.panel__view-all {
  font-size: 0.6875rem; font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.panel__view-all:hover { opacity: 0.7; }

.panel__view-all svg {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Editorial panel (Where/How/What to Play) */
.ed-panel {
  position: relative;
  background: #f2f1ee;
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.ed-panel__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 2px solid #000;
}

.ed-panel__title {
  font-size: 1rem; font-weight: 700;
  color: #000; letter-spacing: -0.01em; text-transform: lowercase;
}

.ed-panel__view-all {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #000; text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.ed-panel__view-all:hover { opacity: 0.5; }

.ed-list { list-style: none; }

.ed-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ed-list--two-col .ed-item { border-bottom: 1px solid #d9d8d5; }

.ed-list--two-col .ed-item:nth-child(odd) {
  border-right: 1px solid #d9d8d5;
}

.ed-list--two-col .ed-item:nth-last-child(-n+2) { border-bottom: none; }

.ed-item {
  display: block; padding: 16px 20px;
  border-bottom: 1px solid #d9d8d5;
  text-decoration: none;
  transition: background 0.15s;
}

.ed-item:last-child  { border-bottom: none; }
.ed-item:hover       { background: #eae9e6; }

.ed-item--featured .ed-item__title { font-size: 1rem; font-weight: 700; }

.ed-item__title-row {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px;
}

.ed-plus {
  color: #d0021b; font-size: 1.125rem; font-weight: 700;
  line-height: 1.3; flex-shrink: 0;
}

.ed-item__title {
  font-size: 0.9375rem; font-weight: 600;
  color: #000; line-height: 1.4;
}

.ed-item__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

.ed-item__author {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #888;
}

.ed-item__dot {
  width: 2px; height: 2px; border-radius: 50%;
  background: #aaa; flex-shrink: 0;
}

.ed-item__time {
  font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.06em; color: #aaa;
}

.sub-cards-row .ed-panel { display: flex; flex-direction: column; }

/* Meta utilities */
.meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: #d1d5db; flex-shrink: 0;
}

/* Column heading with bottom border */
.col-heading {
  font-size: 1.125rem; font-weight: 700;
  color: #000; letter-spacing: -0.01em;
  padding-bottom: 14px; margin-bottom: 24px;
  border-bottom: 2px solid #000;
  display: flex; align-items: center; justify-content: space-between;
}

.col-heading__link {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #000; text-decoration: none;
  border-bottom: 1px solid #000; padding-bottom: 1px;
  transition: opacity 0.2s;
}

.col-heading__link:hover { opacity: 0.45; }

/* ════════════════════════════════════════
   ARTICLE CARD (shared across pages)
════════════════════════════════════════ */
.article-card {
  display: flex; flex-direction: column;
  border-radius: 12px; overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
}

.article-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.article-card__img-wrap {
  position: relative; width: 100%;
  aspect-ratio: 16 / 10; overflow: hidden; flex-shrink: 0;
}

.article-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__img { transform: scale(1.05); }

.article-card__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--color-accent); color: #fff;
  text-decoration: none;
}

.article-card__body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}

.article-card__meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}

.article-card__cat {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent); text-decoration: none;
}

.article-card__cat:hover { text-decoration: underline; }

.article-card__date { font-size: 0.75rem; color: #9ca3af; font-weight: 400; }

.article-card__title {
  font-size: 1.0625rem; font-weight: 600;
  color: #000000; line-height: 1.4; margin-bottom: 12px;
  text-decoration: none; display: block;
  transition: color 0.2s;
}

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

.article-card__desc {
  font-size: 0.875rem; font-weight: 400;
  color: #6b7280; line-height: 1.65;
  margin-bottom: 20px; flex: 1;
}

.article-card__read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #000000; text-decoration: none;
  transition: color 0.2s; margin-top: auto;
}

.article-card__read-more svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}

.article-card__read-more:hover             { color: var(--color-accent); }
.article-card__read-more:hover svg         { transform: translateX(3px); }

/* ════════════════════════════════════════
   NEWS LIST (complex section col 1)
════════════════════════════════════════ */
.news-list { list-style: none; }

.news-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background 0.15s;
}

.news-item:last-child { border-bottom: none; }
.news-item:hover      { background: #f9fafb; }

.news-item__num {
  font-size: 1.125rem; font-weight: 700;
  color: #e5e7eb; flex-shrink: 0;
  width: 22px; text-align: center; line-height: 1;
}

.news-item__thumb {
  width: 68px; height: 52px;
  border-radius: 6px; object-fit: cover; flex-shrink: 0;
}

.news-item__info { flex: 1; min-width: 0; }

.news-item__cat {
  font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 4px;
}

.news-item__title {
  font-size: 0.8125rem; font-weight: 500;
  color: #000; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ════════════════════════════════════════
   RANKINGS LIST (complex section col 3)
════════════════════════════════════════ */
.rankings-list { list-style: none; }

.ranking-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background 0.15s;
}

.ranking-item:last-child { border-bottom: none; }
.ranking-item:hover      { background: #f9fafb; }

.ranking-item__pos {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700; color: #000; flex-shrink: 0;
}

.ranking-item:first-child   .ranking-item__pos { background: #fbbf24; color: #fff; }
.ranking-item:nth-child(2)  .ranking-item__pos { background: #9ca3af; color: #fff; }
.ranking-item:nth-child(3)  .ranking-item__pos { background: #b45309; color: #fff; }

.ranking-item__info { flex: 1; min-width: 0; }

.ranking-item__venue {
  font-size: 0.875rem; font-weight: 600;
  color: #000; line-height: 1.3; margin-bottom: 3px;
}

.ranking-item__location {
  font-size: 0.75rem; color: #9ca3af; font-weight: 400;
  display: flex; align-items: center; gap: 4px;
}

.ranking-item__location svg {
  width: 10px; height: 10px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

.ranking-item__score {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--color-accent); flex-shrink: 0;
}

/* ════════════════════════════════════════
   CONTACT FORM (shared)
════════════════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #000;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit; font-size: 0.9375rem; font-weight: 400;
  color: #000; background: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #d1d5db; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-top-color: #6b7280;
  pointer-events: none;
}

.form-submit {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: #000; color: #fff;
  font-family: inherit; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover { background: var(--color-accent); transform: translateY(-2px); }

.form-submit svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}

.form-submit:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════
   PAGINATION (shared)
════════════════════════════════════════ */
.wp-pagenavi,
.navigation.pagination .nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin-top: 40px;
}

.page-numbers,
.nav-links a,
.nav-links span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: 7px;
  font-size: 0.875rem; font-weight: 600; color: #000;
  text-decoration: none; border: 1px solid var(--color-border);
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.page-numbers:hover, .nav-links a:hover { background: #f3f4f6; border-color: #d1d5db; }

.page-numbers.current,
.nav-links .current {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}
