/* Shared CSS for blog posts and state pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #E91E63;
  --primary-dark: #C2185B;
  --primary-light: #F8BBD0;
  --secondary: #9C27B0;
  --bg: #FFF8FB;
  --text: #2D1B2E;
  --text-muted: #6B5B6E;
  --border: #F3D7E2;
  --shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
  --shadow-lg: 0 12px 40px rgba(233, 30, 99, 0.12);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: white;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

nav {
  position: sticky; top: 60px;
  background: rgba(255, 248, 251, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--text);
}
.logo:hover { text-decoration: none; color: var(--text); }
.logo-icon { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.logo-icon img { width: 100% !important; height: 100% !important; object-fit: cover; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.article-header {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  text-align: center;
}
.article-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.article-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.article-header .lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 20px;
}
.article-meta {
  font-size: 14px;
  color: var(--text-muted);
}

article {
  padding: 40px 0 60px;
  font-size: 17px;
}
article p { margin-bottom: 20px; color: var(--text); }
article h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 50px 0 20px;
  letter-spacing: -0.01em;
}
article h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 14px;
}
article h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
}
article ul, article ol { margin: 0 0 24px 0; padding-left: 24px; }
article li { margin-bottom: 8px; }
article strong { font-weight: 700; color: var(--text); }
article em { font-style: italic; }

article blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
}
article blockquote p:last-child { margin-bottom: 0; }

.callout {
  background: linear-gradient(135deg, #FFF3F8 0%, #F8E8FF 100%);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}
.callout p { margin-bottom: 0; }

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
article th, article td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
article th {
  background: var(--bg);
  font-weight: 700;
}
article tr:hover td { background: var(--bg); }

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 32px;
  border-radius: 16px;
  margin: 40px 0;
  text-align: center;
}
.cta-box h3 { color: white; margin-top: 0; font-size: 22px; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.cta-box .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.cta-box .btn:hover {
  text-decoration: none;
  color: var(--text);
  transform: translateY(-2px);
}

.related {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 30px;
}
.related h3 { font-size: 20px; margin-top: 0; }
.related ul { list-style: none; padding: 0; }
.related li { margin-bottom: 12px; }

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}
footer a { color: rgba(255,255,255,0.9); margin: 0 8px; }
footer a:hover { text-decoration: none; color: white; }

@media (max-width: 700px) {
  .nav-links { gap: 12px; font-size: 13px; }
  .nav-links a:nth-child(n+5) { display: none; }
  .article-header { padding: 40px 0 20px; }
  article { padding: 30px 0 50px; font-size: 16px; }
  article h2 { font-size: 24px; }
  article h3 { font-size: 19px; }
}

/* State pages list styles */
.flower-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.flower-list li {
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #f4dde9;
  transition: all 0.2s;
}
.flower-list li:hover {
  border-color: #E91E63;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.08);
}
.flower-list a {
  color: #2D1B2E;
  text-decoration: none;
  display: block;
}
.flower-list.state-list a strong {
  color: #E91E63;
}

.article-hero-image {
  margin: 30px auto 0;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 27, 46, 0.12);
}
.article-hero-image img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
