/* Image Text Section Component Styles */
.image-text-section {
  background: #ffffff;
  padding: 64px 0;
}

.image-text-section .section-content {
  display: flex;
  gap: 126px;
  align-items: center;
}

/* Image positioning */
.image-text-section .section-content.image-left {
  flex-direction: row;
}

.image-text-section .section-content.image-right {
  flex-direction: row-reverse;
}

/* Image styles */
.image-text-section .section-image {
  width: 532px;
  min-width: 532px;
  height: 660px;
  overflow: hidden;
}

.image-text-section .section-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Text content */
.image-text-section .section-text {
  flex: 1;
  padding: 20px 0;
}

.image-text-section .area-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.image-text-section h2 {
  font-size: 54px;
  font-weight: 550;
  font-family: var(--font-family-title);
  margin: 0 0 24px 0;
}

.image-text-section .section-description {
  font-size: 1rem;
  line-height: 28px;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 40px 0;
}

/* Responsive Design */
@media screen and (max-width: 1040px) {
  .image-text-section {
    padding: 48px 0;
  }

  .image-text-section .section-content {
    gap: 20px;
  }

  .image-text-section .section-image {
    min-width: unset;
    width: 50%;
    min-width: 50%;
    height: 390px;
  }

  .image-text-section .area-label {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
  }

  .image-text-section h2 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .image-text-section .section-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .image-text-section .section-content.image-left {
    flex-direction: column-reverse;
  }

  .image-text-section .section-content.image-right {
    flex-direction: column-reverse;
  }

  .image-text-section .section-content {
    gap: 36px;
  }

  .image-text-section {
    padding: 40px 0;
  }

  .image-text-section .section-text {
    padding: 0;
  }

  .image-text-section .section-description {
    margin-bottom: 32px;
  }

  .image-text-section .section-image {
    width: 100%;
    height: 335px;
  }
}