/* GEO CTA Homepage */
.geo-cta-home {
  text-align: center;
  padding: 40px 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  border: 1px solid rgba(234, 179, 8, 0.2);
}
.geo-cta-home h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}
.geo-cta-home p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 24px;
}

/* Mid-list CTA */
.geo-cta-mid {
  text-align: center;
  margin: 20px 0;
}

/* Main CTA Button */
.geo-cta-button {
  display: inline-block;
  background: #EAB308;
  color: #0A0A0A !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}
.geo-cta-button:hover {
  background: #FBBF24;
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
  transform: translateY(-1px);
}

/* Small CTA Button */
.geo-cta-button-small {
  display: inline-block;
  background: #EAB308;
  color: #0A0A0A !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.geo-cta-button-small:hover {
  background: #FBBF24;
}

/* Inline CTA after article content */
.geo-cta-inline {
  text-align: center;
  padding: 32px 24px;
  margin: 32px 0;
  background: rgba(234, 179, 8, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(234, 179, 8, 0.15);
}
.geo-cta-inline p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #ccc;
}

/* Article Layout with Sidebar */
.article-layout {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.article-main {
  flex: 1;
  min-width: 0;
}
.article-sidebar {
  flex: 0 0 280px;
  display: none;
}

/* Sidebar CTA */
.sidebar-cta {
  position: sticky;
  top: 80px;
  padding: 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  border: 1px solid rgba(234, 179, 8, 0.2);
  text-align: center;
}
.sidebar-cta h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}
.sidebar-cta p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 16px;
}
.sidebar-subtext {
  font-size: 0.8rem !important;
  color: #666 !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* Show sidebar on desktop */
@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
  }
}

/* Hide sidebar on mobile, keep inline CTA */
@media (max-width: 1023px) {
  .article-layout {
    flex-direction: column;
    gap: 0;
  }
}
