.ric-mk{
  position: relative;
  overflow: hidden;
}

.ric-mk__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.ric-mk__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ric-mk__overlay{
  position: absolute;
  inset: 0;
  background: var(--ric-mk-overlay, rgba(0,0,0,.35));
  pointer-events: none;
}

.ric-mk__card{
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background: var(--ric-mk-card-bg, #2b5cff);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
}

.ric-mk__left{
  min-width: 0;
}

.ric-mk__title{
  margin: 0 0 12px;
  font-weight: 300;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.05;
  white-space: pre-line;
  color: var(--ric-mk-title, #fff);
}

.ric-mk__text{
  margin: 0 0 18px;
  color: var(--ric-mk-text, rgba(255,255,255,.9));
  line-height: 1.35;
  font-size: 14px;
  white-space: pre-line;
}

.ric-mk__btn, .ric-mk__btn-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--ric-mk-btn-bg, #fff);
  color: var(--ric-mk-btn-color, #2b5cff);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

.ric-mk__right{
  display:flex;
  justify-content: center;
}

.ric-mk__img{
  width: 100%;
  height: auto;
  display:block;
}


.ric-mk__imgPlaceholder{
  width: 320px;
  max-width: 100%;
  min-height: 180px;
  border-radius: 12px;
  border: 2px dashed rgba(255,255,255,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.85);
  text-align:center;
  padding: 12px;
}

@media (max-width: 900px){
  .ric-mk__card{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ric-mk__right{
    order: 2;
  }
  .ric-mk__left{
    order: 1;
  }
}
