.vm-section {
  padding: 10px 0;
  background: var(--bg-light);
}

/* ROW */
.vm-row {
  position: relative;
  margin-bottom: 80px;

  background: var(--white);
  border-radius: 40px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  background-image: linear-gradient(
    45deg,
    #ffffff 25%,
    #f9f9f9 25%,
    #f9f9f9 50%,
    #ffffff 50%,
    #ffffff 75%,
    #f9f9f9 75%,
    #f9f9f9 100%
  );
  background-size: 40px 40px;

  transition: 0.3s;
}

/* CLEAR FLOAT */
.vm-row::after {
  content: "";
  display: block;
  clear: both;
}

/* HOVER */
.vm-row:hover {
  transform: translateY(-5px);
}

/* IMAGE FLOAT */
.vm-img {
  float: left;
  width: 320px;
  margin: 0 30px 20px 0;
}

.vm-row.reverse .vm-img {
  float: right;
  margin: 0 0 20px 30px;
}

/* IMAGE */
.vm-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 25px;
  border: 8px solid #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.vm-img img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ========================= */
/* TEXT (NO WRAPPER NEEDED) */
/* ========================= */

/* TITLE */
.vm-row h2 {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

/* RED LINE */
.vm-row h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 5px;
}

/* TEXT */
.vm-row p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

/* LIST */
.vm-row ul {
  padding-left: 20px;
  margin-top: 10px;
}

.vm-row ul li {
  margin-bottom: 12px;
  font-size: 15.8px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

/* BULLETS */
.vm-row ul li::marker {
  color: var(--accent-red);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

  .vm-row {
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
  }

  /* REMOVE FLOAT */
  .vm-img,
  .vm-row.reverse .vm-img {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }

  .vm-img img {
    width: 100%;
    height: auto;
  }

  .vm-row h2 {
    font-size: 1.7rem !important;
  }

  .vm-row h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .vm-row ul li {
    text-align: justify;
  }
}