.text-scroll-section {
  position: relative;
}

.text-scroll-inner {
  max-width: 1300px;
  margin: auto;
  position: relative;
}

/* CONTENT */
.text-scroll-content {
  max-width: 760px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.text-scroll-headline {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.3;
  font-weight: 500;
}

.text-scroll-headline span {
  color: var(--color-green);
}

.text-scroll-text {
  margin-top: 25px;
}

.text-scroll-icon {
  margin-top: 25px;
}

.text-scroll-icon img {
  width: 80px;
  height: auto;
}

.text-scroll-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* FLOATING IMAGES */
.text-scroll-img {
  position: absolute;
  width: 240px;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-small);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.text-scroll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSITIONS */
.text-scroll-img-left {
  left: -120px;
  top: -60px;
  transform: rotate(-6deg);
}

.text-scroll-img-right {
  right: -120px;
  bottom: -60px;
  transform: rotate(6deg);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .text-scroll-img-left {
    left: -40px;
  }
  .text-scroll-img-right {
    right: -40px;
  }
}

@media (max-width: 991px) {
  .text-scroll-img-left,
  .text-scroll-img-right {
    display: none;
  }

  .text-scroll-mobile-images {
    display: flex;
    gap: 10px;
    margin-top: 30px;
  }

  .text-scroll-mobile-images .text-scroll-img {
    position: relative;
    width: 50%;
    height: 180px;
    transform: none !important;
    box-shadow: none;
  }

  .text-scroll-mobile-images .text-scroll-img img {
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .text-scroll-section {
    padding: 50px 0;
  }
}
