/* === Teething Tips Page === */
main {
  padding: 40px 20px 60px; /* 100px top for fixed navbar */
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero Section */
.tips-hero {
  text-align: center;
  margin-bottom: 40px;
}

.tips-hero h1 {
  font-size: 2.5rem;
  color: #ff77a9;
  margin-bottom: 10px;
}

.tips-hero p {
  font-size: 1.1rem;
  color: #666;
}

/* Tips Grid */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Each Tip Card */
.tip-card {
  background: #fdf7f9;
  border-left: 5px solid #ff77a9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tip-card h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.2rem;
}

.tip-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tips-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
