/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/

:root {
  --sand: #F5E6D3;
  --sand-light: #FBF3EA;
  --sand-dark: #E8D5BF;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --green-pale: #40916C;
  --orange: #C75B12;
  --orange-light: #E07020;
  --orange-pale: #F4A261;
  --black: #1A1A1A;
  --gray: #6B6B6B;
  --gray-light: #9B9B9B;
  --white: #FFFFFF;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(27,67,50,0.08);
  --shadow-hover: 0 8px 32px rgba(27,67,50,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--sand);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

/* ===== HEADER ===== */
.site-header {
  background: var(--green);
  color: var(--sand-light);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand-light);
  letter-spacing: 1px;
}
.logo span { color: var(--orange-pale); }
.nav-list {
  display: none;
  list-style: none;
  gap: 0;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--green);
  padding: 10px 20px 20px;
}
.nav-list.active { display: flex; }
.nav-list li a {
  color: var(--sand-light);
  font-size: 0.95rem;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(245,230,211,0.1);
  transition: color var(--transition);
}
.nav-list li a:hover { color: var(--orange-pale); }
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--sand-light);
  border-radius: 2px;
  transition: var(--transition);
}
.header-tag {
  display: none;
  font-size: 0.75rem;
  color: var(--orange-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .burger { display: none; }
  .nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 24px;
  }
  .nav-list li a { border: none; padding: 0; }
  .header-tag { display: block; }
  .header-inner { padding: 14px 32px; }
}
@media (min-width: 1024px) {
  .header-inner { padding: 16px 40px; }
  .logo { font-size: 1.8rem; }
}

/* ===== MAIN CONTAINER ===== */
.main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
@media (min-width: 768px) { .main-container { padding: 32px; } }
@media (min-width: 1024px) { .main-container { padding: 40px; } }

/* ===== HERO GEOMETRIC ===== */
.hero-geo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-main-module {
  background: var(--green);
  color: var(--sand-light);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-main-module::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
}
.hero-main-module::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--orange-pale);
  opacity: 0.1;
  transform: rotate(45deg);
}
.hero-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.hero-main-module h1 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.hero-main-module p {
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.hero-side-module {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-side-module:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.hero-side-module h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.hero-side-module p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}
.hero-side-module .read-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .hero-geo {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }
  .hero-main-module { min-height: 400px; padding: 40px 32px; }
  .hero-main-module h1 { font-size: 2.2rem; }
}
@media (min-width: 1024px) {
  .hero-geo { gap: 24px; }
  .hero-main-module { min-height: 460px; padding: 48px 40px; }
  .hero-main-module h1 { font-size: 2.6rem; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title-center {
  text-align: center;
}
.section-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) { .section-title { font-size: 1.8rem; } }

/* ===== GEOMETRIC GRID ===== */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.geo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.geo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.geo-card-accent {
  background: var(--green);
  color: var(--sand-light);
}
.geo-card-accent h3, .geo-card-accent p { color: var(--sand-light); }
.geo-card-orange {
  background: var(--orange);
  color: var(--white);
}
.geo-card-orange h3, .geo-card-orange p { color: var(--white); }
.geo-card h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--green);
}
.geo-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}
.geo-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.geo-card-wide { grid-column: 1 / -1; }
.geo-card-tall { min-height: 280px; display: flex; flex-direction: column; justify-content: center; }

@media (min-width: 768px) {
  .geo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .geo-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .geo-card-span2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .geo-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .geo-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.article-content {
  max-width: 100%;
}
.article-content h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--green);
  margin: 32px 0 14px;
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.sidebar-box h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-pale);
}
.sidebar-box p, .sidebar-box li {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}
.sidebar-box ul {
  list-style: none;
  padding: 0;
}
.sidebar-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-dark);
  padding-left: 16px;
  position: relative;
}
.sidebar-box ul li::before {
  content: '\25A0';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 12px;
}
.sidebar-accent {
  background: var(--green);
  color: var(--sand-light);
}
.sidebar-accent h4 { color: var(--orange-pale); border-color: var(--green-light); }
.sidebar-accent p { color: var(--sand-light); opacity: 0.9; }

@media (min-width: 768px) {
  .article-layout { grid-template-columns: 2fr 1fr; gap: 40px; }
}
@media (min-width: 1024px) {
  .article-layout { gap: 48px; }
  .article-content h2 { font-size: 1.6rem; }
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--green);
  color: var(--sand-light);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  position: absolute;
  top: -20px;
  left: 16px;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
}
.quote-block blockquote {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.quote-block cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--orange-pale);
  font-family: 'Segoe UI', sans-serif;
}
@media (min-width: 768px) {
  .quote-block { padding: 48px 40px; }
  .quote-block blockquote { font-size: 1.3rem; }
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--sand-light), var(--sand-dark));
  border-left: 5px solid var(--orange);
  padding: 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 28px 0;
}
.highlight-box h4 {
  font-family: Georgia, serif;
  color: var(--green);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.highlight-box p {
  font-size: 0.92rem;
  color: var(--gray);
}

/* ===== IMAGE MODULE ===== */
.img-module {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
  position: relative;
}
.img-module img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.img-module .img-caption {
  background: var(--green);
  color: var(--sand-light);
  padding: 12px 20px;
  font-size: 0.82rem;
  font-style: italic;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--green);
  color: var(--sand-light);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--orange);
  opacity: 0.15;
  border-radius: 50%;
}
.newsletter-section h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  position: relative;
}
.newsletter-section p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input[type="email"] {
  padding: 14px 18px;
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  background: var(--sand-light);
  color: var(--black);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  min-height: 48px;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--orange);
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  min-height: 48px;
  min-width: 44px;
}
.newsletter-form button:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form input[type="email"] { flex: 1; }
  .newsletter-section { padding: 56px 40px; }
  .newsletter-section h3 { font-size: 1.6rem; }
}

/* ===== RELATED ARTICLES ===== */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.related-card-body {
  padding: 20px;
}
.related-card-body .tag {
  display: inline-block;
  background: var(--sand-dark);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}
.related-card-body h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.related-card-body h4 a { color: var(--green); }
.related-card-body h4 a:hover { color: var(--orange); }
.related-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green);
  color: var(--sand-light);
  padding: 40px 20px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245,230,211,0.15);
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--orange-pale); }
.footer-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  color: var(--sand-light);
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--orange-pale); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  opacity: 0.6;
}
.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.5;
  line-height: 1.5;
  max-width: 700px;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .site-footer { padding: 48px 32px 28px; }
}

/* ===== COOKIES BANNER ===== */
.cookie-overlay { display: none; }
#cookie-toggle { display: none; }
#cookie-toggle:not(:checked) ~ .cookie-overlay {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  padding: 16px;
  pointer-events: none;
}
.cookie-banner {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  max-width: 420px;
  margin-left: auto;
  pointer-events: all;
  position: relative;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}
.cookie-banner a { color: var(--green); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions label, .cookie-actions a.cookie-decline {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}
.cookie-accept {
  background: var(--green);
  color: var(--white);
  border: none;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--green-light); }
.cookie-decline {
  background: var(--sand-dark);
  color: var(--black);
  transition: background var(--transition);
}
.cookie-decline:hover { background: var(--sand); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.legal-page h1 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 24px;
}
.legal-page h2 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--green);
  margin: 28px 0 12px;
}
.legal-page p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--gray);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}
.success-page h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 16px;
}
.success-page p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== 404 PAGE ===== */
.error-page {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.error-code {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.error-page h1 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 14px;
}
.error-page p {
  color: var(--gray);
  margin-bottom: 28px;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: var(--green);
  color: var(--sand-light);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--orange);
  opacity: 0.1;
  border-radius: 50%;
}
.article-hero .tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.article-hero h1 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
}
.article-hero .author {
  font-size: 0.85rem;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .article-hero { padding: 56px 40px; }
  .article-hero h1 { font-size: 2.2rem; }
}

/* ===== INLINE LIST ===== */
.inline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
}
.inline-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--sand-light);
  border-radius: var(--radius);
}
.inline-list-item .num {
  background: var(--orange);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.inline-list-item p { font-size: 0.9rem; margin: 0; }
@media (min-width: 768px) { .inline-list { grid-template-columns: 1fr 1fr; } }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-number {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }

/* ===== DIVIDER ===== */
.geo-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0;
}
.geo-divider::before, .geo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-dark);
}
.geo-divider span {
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.geo-card, .related-card, .sidebar-box {
  animation: fadeInUp 0.5s ease both;
}
