/** Shopify CDN: Minification failed

Line 97:0 Unexpected "/"

**/

.bg-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch; 
}

@media (max-width: 1000px) {
  .bg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .bg-grid { grid-template-columns: 1fr; }
}


.bg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}


.bg-card__image-link { display: block; }
.bg-card__image {
  display: block;
  width: 100%;
  height: 350px;            
  object-fit: cover;        
}


.bg-card__content {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  flex: 1 1 auto;          
}


.bg-card__category {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #6b7280;
}


.bg-card__title {
  margin: 0 0 10px 0;
  font-size: 22px;
  line-height: 1.25;
}
.bg-card__title a {
  color: #111827;
  text-decoration: none;
}
.bg-card__title a:hover { text-decoration: underline; }


.bg-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.bg-card__cta {
  margin-top: auto;         
  padding-top: 8px;
}


.bg-card__link {
  color: #0162af;
  font-size: 16px;
  line-height: 28px;
  text-decoration: underline;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/
.bg-card:hover { border-color: #e5e7eb; }
