/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 115:0 Unexpected "{"
Line 115:1 Expected identifier but found "%"
Line 124:2 Unexpected "{"
Line 124:3 Expected identifier but found "%"
Line 168:0 Unexpected "<"

**/
<style>
  .related-articles-grid {
    border-bottom: 1px solid #666665;
    padding-bottom: 40px;
}
.related-articles-wrapper {
  padding: 40px 0;
  background: #fdf6ef;
}

.related-articles-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-top: 1px solid #666666;
    /* margin-top: 30px; */
    padding-top: 40px;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.related-article-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform .2s ease;
  padding: 20px;

}

.related-article-card:hover {
  transform: translateY(-4px);
}

.thumb-wrapper {
  position: relative;
  display: block;
}

.thumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: none !important;
}

.date-badge {
    position: absolute;
    /* top: 15px; */
    /* left: 15px; */
    background: #ff6a00;
    color: #fff;
    /* padding: 8px 10px; */
    /* border-radius: 6px; */
        border-top-left-radius: 12px;
    text-align: center;
    font-weight: 600;
    z-index: 3;
}

.date-badge .day {
    font-size: 32px;
    line-height: 1;
    display: block;
    padding: 10px;
}

.date-badge .month {
    font-size: 16px;
    display: block;
    padding: 5px;
    background: #261E05;
}

.play-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 32px;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,.4);
  z-index: 3;
}

.article-content {
  padding: 16px 20px 24px;
}

.article-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.article-excerpt {
  font-size: 20px;
  color: #555;
  margin-bottom: 16px;
}

{% comment %} .learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6a00;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease;
} {% endcomment %}
a.learn-more-btn {
    color: #ffffff;
    font-size: 18px;
    max-width: 176px;
    width: 100%;
    text-align: center;
    padding: 5px;
    font-weight: 400;
     background: #f36d21;
     border-radius: 6px;
  text-decoration: none;
   display: inline-block;

}
.learn-more-btn:hover {
  color: #f36d21;
  background: #ffffff;
  border: 1px solid #f36d21;
  
}
@media (max-width:768px){
  .page-width.page-width--narrow.rte.scroll-trigger.animate--slide-in.related-articles-inner {
    padding: 20px;
}
.related-article-card {
    padding: 13px;
}
.date-badge .day {
    font-size: 23px;
}
.date-badge .month {
    font-size: 10px;
}
.article-title {
    font-size: 20px;
}
.article-excerpt {
    font-size: 15px;
}
    a.learn-more-btn {
        font-size: 13px;
    }
}
</style>
