:root {
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-text-primary: #1a1a18;
  --color-text-secondary: #5f5e5a;
  --color-accent: #185fa5;
  --color-accent-bg: #e6f1fb;
  --color-accent-contrast: #ffffff;
  --color-border: #b4b2a9;
  --color-bg-light: #f5f4f0;
  --color-surface: #ffffff;
  --radius-default: 8px;
  --container-width: 100%;
}

@media (min-width: 768px) {
  :root {
    --container-width: 720px;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-width: 1110px;
  }
}
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 768px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
.treatments-grid--single {
  grid-template-columns: 1fr;
}
.treatments-grid--single .treatment-card {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0;
  gap: 1.5rem;
}
.treatments-grid--single .treatment-card__icon {
  width: 64px;
  height: 64px;
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-bottom: 0;
}
.treatments-grid--single .treatment-card__title {
  font-size: 1.75rem;
}
.treatments-grid--single .treatment-card__description {
  display: none;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-default);
  background: var(--color-surface);
}
.treatment-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-default);
  background: var(--color-accent-bg);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.treatment-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.35rem;
}
.treatment-card__description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/*# sourceMappingURL=TreatmentsGrid.css.map */
