/* ================================
   RVLC – Video + Content Block
   FINAL CSS (LOCKED VERSION)
================================ */

.rvlc-section {
  background: #f5f9fc;
  padding: 80px 0 60px;
}

.rvlc-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================
   TOP ROW (2 COLUMNS)
   FIX: Vertical center alignment
================================ */

.rvlc-top {
  display: flex;
  align-items: center; /* 🔥 THIS IS THE FIX */
  gap: 40px;
}

/* LEFT CONTENT – 56% */
.rvlc-content {
  width: 56%;
  position: relative;
}

/* RIGHT VIDEO – 44% */
.rvlc-video {
  width: 44%;
  position: relative;
}

/* ================================
   HEADING
================================ */

.rvlc-heading {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin: 0 0 16px;
}

/* ================================
   DESCRIPTION
================================ */

.rvlc-text {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;

  margin-bottom: 24px;
  max-width: 588px;
}

/* Prevent Elementor / theme clipping */
.rvlc-content,
.rvlc-content * {
  overflow: visible !important;
}

/* ================================
   BUTTON
================================ */

.rvlc-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #0a45bb;
  border-radius: 4px;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;

  color: #0a45bb;
  text-decoration: none;
  background: transparent;

  transition: all 0.2s ease;
}

.rvlc-btn:hover {
  background: #0a45bb;
  color: #ffffff;
}

/* ================================
   VIDEO IMAGE
================================ */

.rvlc-video img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   PLAY BUTTON
================================ */

.rvlc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: #e94b5a;
  border-radius: 50%;
  cursor: pointer;
}

.rvlc-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 14px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* ================================
   ICON ROW
================================ */

.rvlc-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.rvlc-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rvlc-icon-item img {
  width: 22px;
  height: 22px;
}

.rvlc-icon-item span {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 26px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .rvlc-top {
    flex-direction: column;
    align-items: flex-start; /* reset for mobile */
    row-gap: 32px;
  }

  .rvlc-content,
  .rvlc-video {
    width: 100%;
  }

  .rvlc-text {
    max-width: 100%;
  }

  .rvlc-icons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
