/** Shopify CDN: Minification failed

Line 14:13 Expected identifier but found whitespace
Line 14:15 Unexpected "{"
Line 14:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:customblog (INDEX:41) */
.latest-news {
  background: {{ section.settings.bg_color }};
}

@media (min-width:1024px){
  .latest-news {
    padding: 40px 183px 60px;
  }
}

.latest-news .title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

.latest-news .title:before,
.latest-news .title:after {
  content: "";
  position: absolute;
  width: 37%;
  height: 1px;
  background: #2E4A50;
  top: 50%;
}

.latest-news .title:before { left: 0; }
.latest-news .title:after { right: 0; }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}

.big-card {
  position: relative;
  height: 100%;
}

.big-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
    padding: 14px 16px 0 10px;
    max-width: 280px;
}

.read-btn {
  display: inline-block;
  margin-top: 10px;
  background: #2e4a50;
  padding: 0px 15px;
  text-decoration: none;
  font-size: 12px;
  color: #f2f1e8;
}

.read-btn:hover {
  color: #f2f1e8;
}

.right-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.small-card {
  display: flex;
  gap: 15px;
  flex: 1;
}

.small-card img {
  width: 239px;
  height: 100%;
  object-fit: cover;
}

.small-content {
  flex: 1;
}

.small-content h4 {
  margin-bottom: 5px;
}

.small-card p {
  margin-bottom: 0;
}

/* Mobile */
@media(max-width:1024px){

  .latest-news .title:before,
  .latest-news .title:after{
    width: 17%;
  }

  .news-grid {
    display: block;
    padding: 0 18px;
  }

  .big-content {
    position: static;
    max-width: 100%;
    border-left: 1px solid #cccccc45;
    border-right: 1px solid #bfbcbcd4;
    border-bottom: 1px solid #ccc;
    padding: 12px 13px 0;
    margin-bottom: 27px;
  }

  .small-card {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .small-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .small-content {
    width: 100%;
  }
}
/* END_SECTION:customblog */