/** Shopify CDN: Minification failed

Line 57:9 Expected identifier but found whitespace
Line 57:11 Unexpected "{"
Line 57:20 Expected ":"
Line 57:47 Expected ":"

**/
.blog-scroll-section .blog-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blog-scroll-section .blog-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-scroll-section .blog-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-scroll-section .blog-scroll-wrapper .blog-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: calc(33.33% - 30px);
  padding: 15px;
  margin: 7.5px;
}

.blog-scroll-section .blog-scroll-wrapper .blog-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .blog-scroll-section .blog-scroll-wrapper .blog-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 430px) {
  .blog-scroll-section .blog-scroll-wrapper .blog-card {
    width: calc(100% - 15px);
  }
}

.blog-scroll-section .blog-scroll-wrapper .blog-image {
  width: 100%;
  height: {{ section.settings.image_height }}px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.blog-scroll-section .blog-scroll-wrapper .blog-date {
  width: 76px;
  height: 76px;
  text-align: center;
  display: inline-block;
  position: absolute;
  padding: 10px 15px;
  color: #fff;
  opacity: 0.5;
  top: 25px;
  left: 25px;
  border: 2px solid white;
}

.blog-scroll-section .blog-title {
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--default-body-font-secondary);
  letter-spacing: 2px;
  font-weight: bold;
  margin-top: 10px;
  color: #a7897b;
  padding-bottom: 5px;
}
.blog-card .blog-date 
{
color: var(--dull-background-color);
border: 2px solid var(--dull-background-color);
opacity: 50%;
}
.blog-scroll-section .post-title {
  font-size: 20px;
  font-family: var(--default-body-font-secondary);
  font-weight: bold;
  color: var(--primary-content-color);
  margin-top: 10px;
  display: inline-block;
  position: relative;
  transition: 0.8s;
}

.blog-scroll-section .blog-excerpt {
  font-size: 14px;
  color: var(--font-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .blog-scroll-section .blog-image {
    height: calc({{ section.settings.image_height }}px * 0.8);
    border-radius: 10px;
    overflow: hidden;
  }
}

.blog-scroll-section .blog-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--default-body-font-primary);
}

.blog-scroll-section .blog-excerpt {
  text-align: justify;
}
    .navigation-controls .product-nav
	{
	cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
      color: black;
	}
  .blog-card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-5px);
  }