.textbox-image-aside-section {
  position: relative;
}

.textbox-image-aside-section .absolute-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.textbox-image-aside-section .image-wrapper.image-text-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.textbox-image-aside-section img.right-scribble {
  position: absolute;
  width: 30%;
  right: -20%;
  top: 100px !important;
}

.textbox-image-aside-section img.left-scribble {
  position: absolute;
  width: 40% !important;
  left: -28% !important;
  top: 130px !important;
}

.textbox-image-aside-section .content-wrapper {
  padding-right: 2rem;
}

.textbox-image-aside-section .content-wrapper.image-left {
  padding-right: 0;
  padding-left: 2rem;
}

.textbox-image-aside-section .content-wrapper.image-right {
  padding-right: 2rem;
  padding-left: 0;
}

.textbox-image-aside-section .description-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--childs-garden-text-secondary, #666);
  margin-bottom: 0;
}

.textbox-image-aside-section .image-wrapper {
  position: relative;
  overflow: hidden;
}

.textbox-image-aside-section .main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.textbox-image-aside-section .image-wrapper:hover .main-image {
  transform: scale(1.02);
}

.textbox-image-aside-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(240, 177, 24, 0.1) 0%,
      rgba(44, 95, 124, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.textbox-image-aside-section .image-wrapper:hover .image-overlay {
  opacity: 1;
}

.textbox-image-aside-section .overlay-badge {
  background: rgba(240, 177, 24, 0.95);
  color: var(--childs-garden-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.textbox-image-aside-section .badge-text {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 991px) {
  .textbox-image-aside-section .content-wrapper,
  .textbox-image-aside-section .content-wrapper.image-left,
  .textbox-image-aside-section .content-wrapper.image-right {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .textbox-image-aside-section .decorative-arrow {
    display: flex;
    justify-content: center;
  }

  .textbox-image-aside-section .highlight-text,
  .textbox-image-aside-section .main-text {
    font-size: 2rem;
  }

  .textbox-image-aside-section .image-overlay {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .textbox-image-aside-section .highlight-text,
  .textbox-image-aside-section .main-text {
    font-size: 1.75rem;
  }

  .textbox-image-aside-section .description-paragraph {
    font-size: 0.95rem;
  }

  .textbox-image-aside-section .decorative-arrow svg {
    width: 100px;
    height: 50px;
  }

  .textbox-image-aside-section .image-overlay {
    padding: 1.5rem;
  }

  .textbox-image-aside-section .overlay-badge {
    padding: 0.5rem 1rem;
  }

  .textbox-image-aside-section .badge-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .textbox-image-aside-section .highlight-text,
  .textbox-image-aside-section .main-text {
    font-size: 1.5rem;
  }

  .textbox-image-aside-section .content-wrapper {
    margin-top: 1.5rem;
  }
}
