/* PASS118: working Latest Blog Posts slider */

.be-blog-hidden-original{
  display:none!important;
  height:0!important;
  margin:0!important;
  padding:0!important;
  overflow:hidden!important;
  opacity:0!important;
}

.be-blog-section{
  max-width:1180px;
  margin:42px auto 46px;
  padding:0 12px;
  color:#0f172a;
  clear:both;
}

.be-blog-section *{
  box-sizing:border-box;
}

.be-blog-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.be-blog-eyebrow{
  display:inline-flex;
  width:max-content;
  border-radius:999px;
  background:#fff7df;
  color:#9b6f0c;
  padding:9px 14px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.be-blog-head h2{
  margin:0 0 8px;
  color:#0f172a;
  font-size:clamp(34px,5vw,62px);
  line-height:1.02;
  letter-spacing:-.055em;
}

.be-blog-head p{
  margin:0;
  max-width:820px;
  color:#64748b;
  font-size:18px;
  line-height:1.55;
}

.be-blog-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}

.be-blog-arrow{
  width:50px;
  height:50px;
  border:1px solid #e2e8f0;
  border-radius:50%;
  background:#fff;
  color:#0f172a;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(15,23,42,.10);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.be-blog-arrow:hover{
  background:#111827;
  color:#fff;
}

.be-blog-shell{
  border-radius:30px;
  overflow:hidden;
  background:#0f172a;
  box-shadow:0 28px 80px rgba(15,23,42,.14);
}

.be-blog-active{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:480px;
  background:#0f172a;
  opacity:1;
  transform:translateX(0);
}

.be-blog-active.is-changing{
  animation:beBlogFade .42s ease both;
}

@keyframes beBlogFade{
  from{opacity:.15;transform:translateX(18px)}
  to{opacity:1;transform:translateX(0)}
}

.be-blog-active.is-reversed .be-blog-panel{
  order:-1;
}

.be-blog-image{
  min-height:480px;
  background:#e2e8f0;
  overflow:hidden;
}

.be-blog-image img{
  width:100%;
  height:100%;
  min-height:480px;
  object-fit:cover;
  object-position:center;
  display:block;
  filter:saturate(1.08) contrast(1.03);
}

.be-blog-panel{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px;
  color:#fff;
  background:
    radial-gradient(circle at 94% 8%,rgba(212,175,55,.14),transparent 30%),
    linear-gradient(135deg,#0f172a,#111827 68%,#172033);
}

.be-blog-category{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  border-radius:999px;
  padding:8px 13px;
  border:1px solid rgba(212,175,55,.44);
  background:rgba(212,175,55,.12);
  color:#fef3c7;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.be-blog-panel h3{
  margin:18px 0 12px;
  color:#fff;
  font-size:clamp(32px,4vw,56px);
  line-height:1.04;
  letter-spacing:-.045em;
}

.be-blog-panel p{
  margin:0;
  color:#dbeafe;
  font-size:18px;
  line-height:1.62;
}

.be-blog-meta{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.be-blog-meta span{
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#e5e7eb;
  padding:8px 11px;
  font-weight:800;
  font-size:13px;
}

.be-blog-read{
  margin-top:24px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:max-content;
  min-height:48px;
  border-radius:14px;
  background:#d4af37;
  color:#111827!important;
  text-decoration:none!important;
  padding:12px 18px;
  font-weight:900;
}

.be-blog-bottom{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  margin-top:18px;
}

.be-blog-progress{
  height:8px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}

.be-blog-progress span{
  display:block;
  height:100%;
  width:1%;
  border-radius:999px;
  background:linear-gradient(90deg,#d4af37,#0f766e);
  transition:width .35s ease;
}

@media(max-width:900px){
  .be-blog-active,
  .be-blog-active.is-reversed{
    grid-template-columns:1fr;
  }

  .be-blog-active.is-reversed .be-blog-panel{
    order:0;
  }

  .be-blog-image,
  .be-blog-image img{
    min-height:320px;
  }
}

@media(max-width:680px){
  .be-blog-section{
    margin:34px auto 38px;
    padding:0 10px;
  }

  .be-blog-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .be-blog-shell{
    border-radius:22px;
  }

  .be-blog-image,
  .be-blog-image img{
    min-height:250px;
  }

  .be-blog-panel{
    padding:30px 22px;
  }
}
