/** Shopify CDN: Minification failed

Line 36:12 Expected identifier but found whitespace
Line 36:14 Unexpected "{"
Line 36:23 Expected ":"
Line 36:55 Expected ":"
Line 43:12 Expected identifier but found whitespace
Line 43:14 Unexpected "{"
Line 43:23 Expected ":"
Line 43:59 Expected ":"
Line 61:16 Expected identifier but found whitespace
Line 61:18 Unexpected "{"
... and 46 more hidden warnings

**/


/* CSS from section stylesheet tags */
.blog-news-section {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  text-align: center;
  background-color: #f5f5f5;
}

.blog-label {
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-news-section .section-heading {
  font-size: {{ section.settings.heading_font_size }}px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.blog-news-section .section-sub-heading {
  font-size: {{ section.settings.sub_heading_font_size }}px;
  margin-bottom: 30px;
  font-weight: normal;
  opacity: 0.8;
}

.blog-news-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-cards {
  width: 350px;
  text-align: left;
  border-radius: {{ section.settings.card_border_radius }}px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.blog-cards:hover {
  transform: translateY(-3px);
}

.blog-image-container {
  position: relative;
  overflow: hidden;
}

.blog-cards img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-cards:hover img {
  transform: scale(1.05);
}

.blog-categorys {
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 2px;
    background-color: #ff9500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex
;
    align-items: center;
    padding: 0px 8px;
    justify-content: center;
}

.blog-content {
  padding: 25px 20px 20px 20px;
  background: transparent;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #333;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #ff9500;
}

.blog-meta {
  font-size: 13px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #999;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-item a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-item a:hover {
  color: #ff9500;
}

.blog-meta-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.blog-footer {
  margin-top: 40px;
}

.blog-button {
  padding: 12px 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  font-weight: 500;
  border-radius: {{ section.settings.button_border_radius }}px;
  background: #ebe4de;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e5a40f;
  transition: left 0.3s ease;
  z-index: -1;
}

.blog-button:hover::before {
  left: 0;
}

.blog-button:hover {
  color: white;
  border-color: #ff9500;
}

@media (max-width: 768px) {
  .blog-news-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-cards {
    width: 90%;
    max-width: 350px;
  }
}
.blog-news-section {
  background: var(--section-bg-color);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  margin-top: var(--margin-top);
  margin-bottom: var(--margin-bottom);
  text-align: center;
  color: var(--section-text-color);
}
.blog-news-section .section-heading {
  font-size: {{ section.settings.heading_font_size }}px;
  font-weight: bold;
  margin-bottom: 10px;
}
.blog-news-section .section-sub-heading {
  font-size: {{ section.settings.sub_heading_font_size }}px;
  margin-bottom: 30px;
  font-weight: normal;
  opacity: 0.8;
}
.blog-news-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-card {
  width: 300px;
  background: {{ section.settings.card_background_color }};
  text-align: left;
  border-radius: {{ section.settings.card_border_radius }}px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: auto;
}
.blog-category {
  background-color: {{ section.settings.category_bg_color }};
  color: {{ section.settings.category_text_color }};
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
}
.blog-content {
  padding: 15px;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.blog-meta {
  font-size: 14px;
  color: {{ section.settings.card_meta_color }};
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-footer {
  margin-top: 20px;
}
.blog-button {
  background: {{ section.settings.button_bg_color }};
  color: {{ section.settings.button_text_color }};
  padding: 12px 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  font-weight: bold;
  border-radius: {{ section.settings.button_border_radius }}px;
}
.blog-button:hover {
  background: {{ section.settings.button_hover_bg_color }};
  color: {{ section.settings.button_hover_text_color }};
  transform: translateY(-2px);
}