/* State Market Page Styles */

.state-hero {
  background: linear-gradient(135deg, #6b4423 0%, #4a2f18 100%);
  padding: 60px 20px;
}

.state-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.state-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
}

.state-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
}

.state-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* City Section */
.city-section {
  margin-bottom: 64px;
}

.city-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e0db;
}

.city-icon {
  width: 48px;
  height: 48px;
  background: #f8f5f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.city-icon svg {
  width: 24px;
  height: 24px;
  color: #6b4423;
}

.city-header-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
}

.city-header-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6b625a;
  margin: 0;
}

.city-cta {
  margin-left: auto;
}

.city-cta a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b4423;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #6b4423;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.city-cta a:hover {
  background: #6b4423;
  color: white;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .state-hero h1 {
    font-size: 2rem;
  }

  .city-header {
    flex-wrap: wrap;
  }
}

/* Post Card */
.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.post-card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #f5f3ef;
}

.post-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8B7355;
  margin-bottom: 8px;
}

.post-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.3;
}

.post-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6b625a;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.post-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0ebe6;
}

/* Coming Soon Placeholder */
.coming-soon-card {
  background: #f8f5f2;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  border: 2px dashed #e5e0db;
}

.coming-soon-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #6b625a;
  margin: 0 0 8px;
}

.coming-soon-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

/* Statewide Section */
.statewide-section {
  background: #f8f5f2;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 64px;
}

@media (max-width: 600px) {
  .statewide-section {
    padding: 32px 20px;
  }
}

.statewide-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b4423;
  margin: 0 0 8px;
}

.statewide-section > p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b625a;
  margin: 0 0 24px;
}

/* CTA Section */
.state-cta {
  background: linear-gradient(135deg, #6b4423 0%, #4a2f18 100%);
  padding: 60px 20px;
  text-align: center;
}

.state-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.state-cta h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  margin: 0 0 12px;
}

.state-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px;
}

.state-cta-button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #6b4423;
  background: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.state-cta-button:hover {
  background: #f5f3ef;
}
