/* ==========================================================================
   Crystal Sanchez Realtor — Blog Styles
   ========================================================================== */

/* Blog Nav (back to main site styling) */
.blog-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 151, 109, 0.2);
}

.blog-nav-logo {
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b8976d;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.blog-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.blog-nav-links a {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-nav-links a:hover {
  color: #b8976d;
}

.blog-nav-cta {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8976d;
  border: 1px solid #b8976d;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.blog-nav-cta:hover {
  background: #b8976d;
  color: #fff;
}

/* Blog Hero */
.blog-hero {
  padding: 140px 40px 80px;
  background: #0f0f0f;
  text-align: center;
}

.blog-hero-eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #b8976d;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-hero-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.blog-hero-sub {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* Article Header (for individual posts) */
.article-header {
  padding: 140px 40px 60px;
  background: #0f0f0f;
  text-align: center;
}

.article-eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #b8976d;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 900px;
  margin: 0 auto 20px;
}

.article-meta {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.article-meta span {
  margin: 0 8px;
}

/* Article Body */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.article-body p {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f0f0f;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #b8976d;
}

.article-body h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #002349;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 32px 0 12px;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body li {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.article-body strong {
  color: #0f0f0f;
  font-weight: 700;
}

/* Stat Callout */
.stat-block {
  background: #f5f5f5;
  border-left: 4px solid #b8976d;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}

.stat-block p {
  margin: 0;
  font-weight: 700;
  color: #002349;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.95rem;
}

.comparison-table th {
  background: #002349;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #2a2a2a;
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background: #f9f9f9;
}

/* FAQ Section */
.faq-section {
  background: #f5f5f5;
  padding: 60px 40px;
  margin-top: 60px;
}

.faq-section h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f0f0f;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #002349;
  margin-bottom: 10px;
}

.faq-answer {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
}

/* Blog CTA Section */
.blog-cta {
  background: #0f0f0f;
  padding: 80px 40px;
  text-align: center;
}

.blog-cta-eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #b8976d;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-cta h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-cta p {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 32px;
}

.btn-gold {
  display: inline-block;
  background: #b8976d;
  color: #fff;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: #a0825c;
}

/* Blog Index Grid */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #b8976d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Antonio', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f0f0f;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-card-excerpt {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002349;
  text-decoration: none;
  border-bottom: 1px solid #b8976d;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.blog-card-link:hover {
  color: #b8976d;
}

/* Blog Footer */
.blog-footer {
  background: #0f0f0f;
  padding: 40px;
  text-align: center;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.blog-footer a {
  color: #b8976d;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-nav { padding: 16px 20px; }
  .blog-nav-links { display: none; }
  .article-header, .blog-hero { padding: 120px 20px 40px; }
  .article-body { padding: 40px 20px 60px; }
  .faq-section { padding: 40px 20px; }
  .blog-cta { padding: 60px 20px; }
  .blog-grid { padding: 40px 16px; }
}
