/** Shopify CDN: Minification failed

Line 10:19 Expected identifier but found whitespace
Line 10:21 Unexpected "{"
Line 10:30 Expected ":"

**/
.routine-circles {
  padding: 60px 20px;
  background-color: {{ section.settings.background_color }};
  text-align: center;
}

.routine-circles__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.routine-circles__grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.routine-circles__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.routine-circles__image-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #f0e8ff;
}

.routine-circles__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-circles__placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e0f0;
}

.routine-circles__label {
  font-size: 12px;
  color: #666;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.routine-circles__name {
  font-size: 14px;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 749px) {
  .routine-circles__grid {
    gap: 20px;
  }
  .routine-circles__item {
    width: 150px;
  }
  .routine-circles__image-wrapper {
    width: 150px;
    height: 150px;
  }
}
.routine-circles__link {
  text-decoration: none;
  display: block;
}