/* Blog page custom styles for performance and structure */
/* Blog page custom styles for performance and structure */
.blog-sidebar {
  max-width: 350px;
  margin: 2rem auto 2rem 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(9,30,66,.12);
  padding: 1.5rem;
}
.expert-advice {
  max-width: 900px;
  margin: 2rem auto;
  background: #f7f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(9,30,66,.10);
  padding: 2rem;
}
.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.advice-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(9,30,66,.08);
  padding: 1.5rem;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
}
.advice-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.share-story-section {
  max-width: 900px;
  margin: 2rem auto;
  background: #fffde7;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(9,30,66,.10);
  padding: 2rem;
}
.share-story-section h2 {
  color: #1a3c6e;
  margin-bottom: 1.2rem;
}
.share-story-section p {
  color: #143a5a;
  max-width: 600px;
  margin: 0 auto 1rem;
}
.share-story-section .form-group input,
.share-story-section .form-group textarea {
  width: 100%;
  margin-bottom: 0.5rem;
}
.share-story-section button {
  background: #ff6b35;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}
.share-story-section .comment-note {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 0.5em;
}
.popular-posts-sidebar {
  max-width: 320px;
  margin: 2rem auto 2rem 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(9,30,66,.12);
  padding: 1.5rem;
  float: right;
}
.popular-posts-sidebar h3 {
  margin-bottom: 1rem;
}
.popular-posts-sidebar ul {
  list-style: none;
  padding: 0;
}
.popular-posts-sidebar li {
  margin-bottom: 1em;
}
.weather-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.weather-temp {
  font-size: 1.5em;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.comment-note {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 0.5em;
}
