/** Shopify CDN: Minification failed

Line 14:14 Expected identifier but found whitespace
Line 14:16 Unexpected "{"
Line 14:25 Expected ":"
Line 14:51 Expected ":"
Line 15:17 Expected identifier but found whitespace
Line 15:19 Unexpected "{"
Line 15:28 Expected ":"
Line 15:57 Expected ":"

**/
.circle-links-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.circle-links-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: nowrap;
}

.circle-links-item {
  flex: 0 1 calc(33.333% - 2rem);
  max-width: 180px;
  text-align: center;
}

.circle-links-anchor {
  text-decoration: none;
  color: inherit;
  display: block;
}

.circle-links-image-wrap {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
}

.circle-links-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-links-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #999;
}

.circle-links-title {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: currentColor;
}

@media (max-width: 749px) {
  .circle-links-wrapper {
    gap: 0.75rem;
  }
  .circle-links-item {
    max-width: 100px;
  }
  .circle-links-title {
    font-size: 0.72rem;
  }
}
