/* ===== INVESTMENT GUIDE ARTICLE ===== */

/* Remove default padding */
body.page-template-investment-guide-article .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* Hero Section */
.guide-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.guide-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gb-white);
}

.guide-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0 auto;
  max-width: 800px;
}

/* Main Content Section */
.guide-content {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.guide-content-inner {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gb-text);
}

/* Headings */
.guide-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gb-gold);
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin: 2rem 0 1rem;
}

.guide-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gb-text);
  margin: 1.5rem 0 0.75rem;
}

/* Paragraphs */
.guide-content p {
  margin-bottom: 1.5rem;
}

/* Lists */
.guide-content ul,
.guide-content ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.guide-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.guide-content ul li {
  list-style-type: disc;
}

.guide-content ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.guide-content ul ul li {
  list-style-type: circle;
}

/* Bold/Strong text */
.guide-content strong {
  font-weight: 600;
  color: var(--gb-navy);
}

/* Tables */
.guide-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.guide-content table thead {
  background: var(--gb-navy);
  color: var(--gb-white);
}

.guide-content table th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-weight: 600;
}

.guide-content table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gb-border);
}

.guide-content table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.guide-content table tbody tr:hover {
  background: #f0f0f0;
}

/* Blockquotes */
.guide-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-left: 4px solid var(--gb-gold);
  font-style: italic;
  color: var(--gb-text);
}

.guide-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Links */
.guide-content a {
  color: var(--gb-navy);
  text-decoration: underline;
}

.guide-content a:hover {
  color: var(--gb-gold);
}

/* CTA Buttons within content */
.guide-content .btn,
.guide-content a.button {
  display: inline-block;
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin: 1rem 0;
  transition: background 0.2s;
}

.guide-content .btn:hover,
.guide-content a.button:hover {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

/* Responsive */
@media (max-width: 768px) {
  .guide-hero {
    padding: 3rem 1.5rem;
  }

  .guide-hero h1 {
    font-size: 1.75rem;
  }

  .guide-hero .hero-intro {
    font-size: 1rem;
  }

  .guide-content {
    padding: 3rem 1.5rem;
  }

  .guide-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
  }

  .guide-content h3 {
    font-size: 1.2rem;
  }

  /* Table responsive */
  .guide-content table {
    font-size: 0.8rem;
  }

  .guide-content table th,
  .guide-content table td {
    padding: 0.5rem;
  }

  /* Make tables scrollable on mobile */
  .guide-content .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
