/* ========================================
   CME VIRTUAL BOX (Block)
======================================== */

.cme-virtual-box {
  background-image: url("/wp-content/themes/skinbonescme/assets/images/Blue.svg");
  max-width: 90%;
  margin: 80px auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.cme-virtual-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.virtual-box-top,
.virtual-box-bottom {
  position: relative;
  z-index: 1;
}

.virtual-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.virtual-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.virtual-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.virtual-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.virtual-heading h3 {
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}


.virtual-register-btn img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(18%) sepia(56%) saturate(2141%) hue-rotate(260deg) brightness(96%) contrast(91%);
}

.virtual-register-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.virtual-description__p {
  
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 14px 0;
}

.virtual-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 24px 0;
}

.virtual-box-bottom h4 {
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 18px 0;
}

/* Features: grid (so responsive actually works) */
.virtual-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.virtual-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.virtual-feature img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.virtual-feature span {
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .cme-virtual-box {
    padding: 24px;
    margin: 40px auto;
  }

  .virtual-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .virtual-buttons {
    width: 100%;
  }

  .virtual-features {
    display: flex;
    flex-wrap: wrap;
  }

  .virtual-feature span {
    font-weight: 600;
    line-height: 24px;
  }

  .virtual-register-btn {
    width: 100%;
    justify-content: space-between;
  }
}
