/* Birthdays Today Section */
.home-birthdays {
  padding: 4rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
}

.home-birthdays__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.home-birthdays__header h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  color: #0c1836;
  margin: 0.5rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-birthdays__header p {
  color: #666666;
  font-size: 1.125rem;
  line-height: 1.6;
}

.home-birthdays__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .home-birthdays__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Birthday badge overlay */
.birthday-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(12, 24, 54, 0.95);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Placeholder for missing images */
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c1836;
  position: absolute;
  top: 0;
  left: 0;
}

.card-img-placeholder span {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-birthdays {
    padding: 3rem 0;
  }

  .home-birthdays__header h2 {
    font-size: 2rem;
  }

  .home-birthdays__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .home-birthdays__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
