/* === STORIES GRID SECTION === */
.stories-grid-section {
  width: 100%;
  padding: 2rem 0; /* Add some vertical breathing space */
  overflow-x: auto; /* Horizontal scroll if needed */
}

#stories-grid-container {
  display: flex;
  flex-wrap: nowrap; /* Keep cards in one horizontal row */
  gap: 1.5rem; /* Space between cards */
  padding-bottom: 2rem; /* Space above subscribe section restored */
}

.stories-grid-link {
  text-decoration: none; /* Remove underline from link */
  color: inherit; /* Keep font color */
}

.stories-grid-card {
  flex: 0 0 auto; /* Do not shrink, fixed width */
  width: 280px; /* Adjust to match Dining Out card width */
  display: flex;
  flex-direction: column;
  background: #fff; /* Ensure no transparent background */
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.stories-grid-card img {
  width: 100%;
  height: 180px; /* Match Dining Out image height */
  object-fit: cover;
  display: block;
}

.stories-grid-card h3 {
  font-family: 'Libre Baskerville', serif; /* Match Dining Out */
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.5rem 0 0.25rem 0;
  text-decoration: none; /* Remove underline */
}

.stories-grid-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0 0 0.5rem 0;
  text-decoration: none; /* Remove underline */
  color: #555;
}
