/* Sunbelt Restoration Guide - Custom Styles (complements Tailwind CSS) */

html { scroll-behavior: smooth; }

/* --- Ad Slots --- */
.ad-slot--header .adsbygoogle { min-height: 90px; }
.ad-slot { min-height: 100px; }
.ad-inline { text-align: center; }

/* --- Article Content Typography --- */
.article-content h2 {
  font-family: Georgia, Cambria, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.article-content h3 {
  font-family: Georgia, Cambria, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.article-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #374151;
}
.article-content ul, .article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }
.article-content li {
  margin-bottom: 0.375rem;
  line-height: 1.65;
  color: #374151;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  overflow-x: auto;
  display: block;
}
.article-content thead th {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 600;
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-bottom: 2px solid #bfdbfe;
  white-space: nowrap;
}
.article-content tbody td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}
.article-content tbody tr:hover { background: #eff6ff; }
.article-content blockquote {
  border-left: 4px solid #3b82f6;
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  background: #eff6ff;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #1d4ed8;
  font-style: italic;
}
.article-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content strong { color: #1e293b; }

/* --- Prose Content (city intros, about page) --- */
.prose-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #374151;
}
.prose-content h2 {
  font-family: Georgia, Cambria, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.prose-content ul, .prose-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.prose-content ul { list-style-type: disc; }
.prose-content ol { list-style-type: decimal; }
.prose-content li {
  margin-bottom: 0.375rem;
  line-height: 1.65;
  color: #374151;
}
.prose-content strong { color: #1e293b; }

/* --- Nav Dropdown --- */
.nav-dropdown__menu { pointer-events: none; }
.nav-dropdown:hover .nav-dropdown__menu { pointer-events: auto; }

/* --- Line Clamp Utilities --- */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
