/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<style>
.editorial-banner-main {
  width: 100%;
}
.editorial-banner__header {
  text-align: center;
  margin-bottom: 20px;
}
.editorial-banner__header p {
  font-size: 16px;
  color: #666;
}
.editorial-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.editorial-banner__item {
  position: relative;
  overflow: hidden;
}
.editorial-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-banner__content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  max-width: 80%;
  z-index:2;
}
.editorial-banner__content h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color:#fff;
}
.editorial-banner__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
 .editorial-banner__item:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000004a;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
}
.editorial-banner-btnimg{
    display: block!important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.editorial-banner__btn {
  margin: 15px 0 0px;
  /* background: white;
  color: black;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 2px;
  display: inline-block; */
}
/* .editorial-banner__item:before {
    content: "";
    background: #00000033;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
} */
@media (max-width: 768px) {
  .editorial-banner__grid {
    grid-template-columns: 1fr;
  }
  .editorial-banner__content {
    left: 20px;
    bottom: 20px;
  }
}