@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500&display=swap');

/* ============================================
   GHOST KOENIG EDITOR — REQUIRED CLASSES
   ============================================ */

.kg-width-wide {
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
  max-width: 1100px;
  width: 100%;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.kg-image { max-width: 100%; }

.kg-card { margin: 2rem 0; }

.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; gap: 6px; }
.kg-gallery-image { flex: 1; overflow: hidden; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

.kg-bookmark-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content { flex: 1; padding: 1rem; }
.kg-bookmark-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.kg-bookmark-description { font-size: 13px; color: var(--text-muted); }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-callout-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.kg-callout-emoji { font-size: 24px; flex-shrink: 0; }
.kg-callout-text { font-size: 15px; line-height: 1.6; }

.kg-toggle-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.kg-toggle-heading { font-weight: 600; cursor: pointer; }
.kg-toggle-content { margin-top: 0.75rem; font-size: 15px; color: var(--text-muted); }

.kg-video-card { margin: 2rem 0; }
.kg-video-card video { width: 100%; border-radius: var(--radius); }

.kg-audio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.kg-product-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 2rem 0;
}
.kg-product-card-image { width: 120px; flex-shrink: 0; }
.kg-product-card-image img { border-radius: var(--radius-sm); }
.kg-product-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.kg-product-card-rating { color: var(--gold); margin-bottom: 6px; }
.kg-product-card-description { font-size: 14px; color: var(--text-muted); }
.kg-product-card-button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
   GOLF LLAMA THEME — GHOST
   ============================================ */

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

:root {
  --green: #1e5c37;
  --green-mid: #2a7a4b;
  --green-light: #4caf79;
  --gold: #b8973a;
  --gold-light: #d4b060;
  --cream: #f5f0e8;
  --dark: #0d1a0f;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-light: #888;
  --border: #e0e0d8;
  --bg: #ffffff;
  --bg-secondary: #f7f7f3;
  --radius: 10px;
  --radius-sm: 6px;
}

html { font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   TICKER
   ============================================ */
.ticker-bar {
  background: var(--green);
  color: #fff;
  padding: 6px 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.ticker-label {
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.ticker-content { display: flex; gap: 1.5rem; white-space: nowrap; }
.ticker-content span { opacity: 0.85; }
.ticker-content strong { font-weight: 700; }
.ticker-content .under { color: #7dffb3; }
.ticker-content .over { color: #ff9090; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  object-position: center top;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.nav-logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--green); }

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 420px;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.tag-featured { background: var(--green); color: #fff; }
.tag-pga { background: #1a3a6a; color: #90b8f0; }
.tag-gear { background: #4a2a08; color: #f0c880; }
.tag-travel { background: #0a3a1a; color: #80f0b0; }
.tag-tips { background: #3a1060; color: #d0a0f8; }
.tag-review { background: #3a2a00; color: #f0d890; }
.tag-analysis { background: #1a1a1a; color: #c0c0c0; }
.hero-eyebrow-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #163f27; }
.hero-visual {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
}
.hero-visual img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  object-position: center top;
}
.hero-visual-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.hero-visual-tagline strong {
  color: #fff;
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 2.5rem 2rem; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}
.see-all {
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 500;
  transition: color 0.2s;
}
.see-all:hover { color: var(--green); }

/* ============================================
   POST CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  border-color: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30,92,55,0.08);
}
.card-thumb {
  height: 180px;
  overflow: hidden;
  background: var(--bg-secondary);
  position: relative;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-thumb img { transform: scale(1.04); }
.card-thumb-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1e0a, #1e5c37);
  font-size: 40px;
  opacity: 0.7;
}
.card-tag-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-body { padding: 1rem 1.1rem 1.1rem; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--text);
  transition: color 0.2s;
}
.card:hover .card-title { color: var(--green); }
.card-meta { font-size: 11px; color: var(--text-light); }

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ============================================
   LEADERBOARD
   ============================================ */
.leaderboard-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.lb-live-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e03030;
  flex-shrink: 0;
}
.lb-event-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.lb-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.lb-pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  width: 28px;
  color: var(--text-muted);
}
.lb-name { flex: 1; font-size: 13px; font-weight: 500; }
.lb-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  width: 40px;
  text-align: right;
}
.lb-score.under { color: var(--green-mid); }
.lb-score.over { color: #cc2222; }
.lb-score.even { color: var(--text-muted); }
.lb-thru { font-size: 11px; color: var(--text-light); width: 32px; text-align: right; }

/* ============================================
   FEATURED / DEEP DIVE CARD
   ============================================ */
.featured-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.featured-card:hover { border-color: var(--green-mid); }
.featured-thumb {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1e0a, #1e5c37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 1.25rem; flex: 1; }
.featured-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
}
.featured-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   SINGLE POST
   ============================================ */
.post-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.post-header .tag { margin-bottom: 1rem; }
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.post-header-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.post-feature-image {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.post-feature-image img {
  width: 100%;
  border-radius: var(--radius);
}
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}
.post-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--green);
}
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol {
  margin: 0 0 1.25rem 1.5rem;
}
.post-content li { margin-bottom: 0.4rem; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text-muted);
}
.post-content a { color: var(--green-mid); text-decoration: underline; }
.post-content a:hover { color: var(--green); }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content figure { margin: 2rem 0; }
.post-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Stat callout box */
.stat-box {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
}
.stat-box-item { flex: 1; text-align: center; }
.stat-box-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.stat-box-label { font-size: 12px; opacity: 0.8; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--green);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nl-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.nl-logo-row img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
  object-position: center top;
}
.nl-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.nl-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; max-width: 300px; }
.nl-form { display: flex; gap: 8px; flex-shrink: 0; }
.nl-form input {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  font-size: 13px;
  color: #fff;
  width: 220px;
  font-family: 'Barlow', sans-serif;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form button {
  background: #fff;
  color: var(--green);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-form button:hover { background: var(--cream); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
  object-position: center top;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.footer-copy { font-size: 12px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

/* ============================================
   DIVIDER
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  margin: 0.5rem 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-divider span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.pagination a, .pagination span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); color: #fff; border-color: var(--green); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 30px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; text-align: center; }
  .nl-form { flex-direction: column; width: 100%; }
  .nl-form input { width: 100%; }
  .site-footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .site-nav { padding: 0.875rem 1rem; }
  .nav-menu { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 1.5rem 1rem; }
  .hero-content { padding: 2rem 1rem; }
  .post-header h1 { font-size: 28px; }
  .post-content { font-size: 16px; }
}
