/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 92:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.shop-by-concern {
  text-align: center;
}
@media screen and (min-width: 1200px) {
.concern-card::after {
  content: "Shop Now";
  display: block;
  text-align: left;
  text-decoration: underline;
}
}

@media screen and (max-width: 767px) {
.concern-card::after {
  content: "Shop Now";
  display: block;
  text-align: center;
  text-decoration: underline;
}
}

.shop-by-concern h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.concern-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.concern-item:hover {
  transform: scale(1.02);
}

.concern-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.concern-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔄 Mobile responsiveness */
@media screen and (max-width: 768px) {
  .concern-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .concern-card {
    text-align: center;
  }
}
</style>