/* =========
   Hero
   ========= */
.hero{
  padding: 54px 0 26px;
}
.hero__wrap{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px){
  .hero__wrap{ grid-template-columns: 1fr; }
}

.hero__main{
  position: relative;
  min-height: 320px;
  overflow: hidden;      
}

.hero__main > *{ position: relative; }

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(74,163,255,.33), rgba(44,51,48,.33));
  opacity: .28;
  pointer-events: none;
}

.hero__content{
  position: relative;
  z-index:2;
  width: 100%;
  height: 100%;
  background: rgba(11,18,32,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}