/*****************************************************************************/
/* SMOOTHFILLER 2025 */

.id-XXXX .content-wrapper-in {
  display: none;
}

/******** Two-column: TEXT (left) + VIDEO (right) ********/
.SF-2025-video-text {
  align-items: stretch;
}

.SF-2025-box-video,
.SF-2025-box-text {
  width: 100%;
  box-sizing: border-box;
}

.SF-2025-box-video {
  position: relative;
  background: #000;
  overflow: hidden;
}

.SF-2025-box-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .SF-2025-video-text {
    display: flex;
    flex-direction: row; /* text left, video right */
  }
  .SF-2025-box-text,
  .SF-2025-box-video {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .SF-2025-video-text {
    display: flex;
    flex-direction: column;
  }
}

/******** Heading (same as SC-2025 h3, but black) ********/
.SF-2025-heading {
  color: #000;
  line-height: 80px;
  margin: 0 0 40px 0;
  font-family: 'ABCROMCompressed-Black';
  text-transform: uppercase;
  font-size: 80px;
}

/******** Benefits list with CSS “+” in a box ********/
.SF-2025-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.SF-2025-benefits li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  column-gap: 20px;
}

.SF-2025-box-text .SF-2025-benefits div {
  color: #000;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

/* Icon box */
.SF-2025-icon-plus {
  width: 72px;
  height: 72px;
  display: inline-block;
  position: relative;
  background: #fff;
  border: 3px solid #000;
  border-radius: 6px;
}

.SF-2025-icon-plus::before,
.SF-2025-icon-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 2px;
}

.SF-2025-icon-plus::before { width: 6px; height: 40%; }
.SF-2025-icon-plus::after { width: 40%; height: 6px; }

/* Responsive tweaks */
@media (max-width: 480px) {
  .SF-2025-heading {
    line-height: 64px;
    font-size: 64px;
  }
  .SF-2025-benefits li {
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
  }
  .SF-2025-icon-plus {
    width: 60px; height: 60px;
  }
  .SF-2025-box-text .SF-2025-benefits div {
    font-size: 18px;
  }
}

/******** Button ********/
.SF-2025-box-button {
  display: inline-block;
  color: #000;
  padding: 0.8rem 1.6rem;
  background-color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-top: 40px;
  width: max-content;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 40px 0 0 0;
}

.SF-2025-box-button:hover {
  background: #000;
  color: #fff;
}