/**
 * Section Styles
 * Main content sections: picks, duckworks, about, contact, FAQ
 */

/* Section Base */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  margin-bottom: 16px;
}

/* Editors' Picks Section */
.picks {
  background: #f1f1f1;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

.faq-grid h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Gallery Grid (if needed) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: #ccc;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}

/* Steps Grid (if needed) */
.pond-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.step {
  background: var(--color-card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  text-align: center;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
