/** Shopify CDN: Minification failed

Line 217:19 Unexpected "{"

**/
.community-section {
  border-top: 1px solid #eae8e4;
  border-bottom: 1px solid #eae8e4;
}

.community-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 20px 64px;
}

/* Header */
.community-header {
  text-align: center;
  margin-bottom: 36px;
}

.community-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b5b0a9;
  display: block;
  margin-bottom: 12px;
}

.community-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.community-accent {
  color: #E63946;
}

.community-subtitle {
  font-size: 13.5px;
  color: #888;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Grid */
.community-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
}

/* Cards */
.community-card {
  position: relative !important;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.community-card__img {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #2d4a35, #1a3020);
}

.community-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.2;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.community-card:hover .community-card__overlay {
  opacity: 1;
}

.community-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 13px 12px;
  z-index: 2;
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-card:hover .community-card__content {
  transform: translateY(0);
  opacity: 1;
}

.community-card__handle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.community-card__handle svg {
  flex-shrink: 0;
}

.community-card__caption {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0 0 6px;
  font-weight: 300;
}

.community-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-card__location {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 3px;
}

.community-card__product {
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.community-card__product:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* CTA */
.community-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.community-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.community-cta__btn:hover {
  background: #333;
}

.community-cta__btn svg {
  flex-shrink: 0;
}

.community-cta__tagline {
  font-size: 10.5px;
  color: #b5b0a9;
  font-weight: 300;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .community-card, {
    aspect-ratio: 3 / 4 !important;
    grid-row: span 1 !important;
  }
}