/** Shopify CDN: Minification failed

Line 150:8 Expected identifier but found whitespace
Line 150:10 Unexpected "{"
Line 150:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blog-v4 (INDEX:16) */
.blog-slider-v4-wrapper {
  padding: 60px 0;
  width: 100%;
}
.bsv4-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.bsv4-heading {
  text-align: center;
  margin-bottom: 36px;
}
.bsv4-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.bsv4-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
}

.bsv4-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bsv4-track-viewport {
  overflow: hidden;
  width: 100%;
}

.bsv4-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.bsv4-slide {
  flex: 0 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.bsv4-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bsv4-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
}

.bsv4-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bsv4-placeholder {
  background: #ddd;
}

.bsv4-card:hover .bsv4-img {
  transform: scale(1.06);
}

.bsv4-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}
.bsv4-date-day {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}
.bsv4-date-month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e53946;
  margin-top: 2px;
}

.bsv4-card-content {
  padding: 20px 4px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bsv4-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: {{ section.settings.category_color | default: '#e53946' }};
  margin-bottom: 8px;
}

.bsv4-card-title {
  font-size: 19px;
  line-height: 1.32;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.bsv4-card-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.bsv4-card-title a:hover {
  text-decoration: underline;
}

.bsv4-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  margin-bottom: 14px;
}

.bsv4-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #767676;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bsv4-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-bottom: 2px;
}
.bsv4-btn:hover {
  color: #e53946;
}

.bsv4-arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  z-index: 3;
}
.bsv4-arrow:hover {
  background: #111;
  color: #fff;
}
.bsv4-arrow[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.bsv4-carousel.bsv4-no-slider .bsv4-arrow {
  display: none;
}
.bsv4-carousel.bsv4-no-slider .bsv4-track {
  flex-wrap: wrap;
}
.bsv4-carousel.bsv4-no-slider .bsv4-slide {
  transform: none !important;
}

.bsv4-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.bsv4-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bsv4-dots button.active {
  background: #111;
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .bsv4-container { padding: 0 16px; }
  .bsv4-title { font-size: 21px; }
  .bsv4-arrow { width: 36px; height: 36px; }
  .bsv4-card-title { font-size: 17px; }
}
/* END_SECTION:blog-v4 */