/* Lifestyle Section - Matching Other Sections */

.lifestyle-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.lifestyle-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 0.96rem !important;
  margin-top: 0;
}

.lifestyle-card {
  background-color: var(--background-white) !important;
  border-radius: 7.68px !important;
  padding: 0.96rem !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid var(--border-light) !important;
  border-top: 3px solid var(--dentist-blue) !important;
  transition: all 0.3s ease;
}

.lifestyle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lifestyle-card h3 {
  color: var(--dentist-blue) !important;
  margin-bottom: 0.96rem !important;
  font-size: 0.9rem !important;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-weight: 600;
}

.lifestyle-card h3 i {
  color: var(--dentist-blue) !important;
}

.lifestyle-card p {
  color: var(--text-gray) !important;
  line-height: 1.5;
  margin-bottom: 0.64rem !important;
  font-size: 0.75rem !important;
}

.lifestyle-card ul {
  color: var(--text-gray) !important;
  line-height: 1.5;
  padding-left: 0.96rem !important;
}

.lifestyle-card li {
  margin-bottom: 0.4rem;
  font-size: 0.75rem !important;
}

.rating-badge {
  display: inline-block;
  padding: 0.32rem 0.64rem;
  border-radius: 4px;
  font-size: 0.7rem !important;
  font-weight: 600;
  margin-bottom: 0.64rem;
  background-color: rgba(33, 147, 176, 0.1);
  color: var(--dentist-blue) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: 1fr !important;
  }
  
  .lifestyle-card {
    padding: 0.96rem !important;
  }
}

