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

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

/* Image Right Layout */
.text-image-section.image-right .section-content {
  flex-direction: row-reverse;
}

/* Image Column */
.text-image-section .image-column {
  width: 100%;
}

.text-image-section .section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  width: 532px;
  height: 660px;
}

/* Text Column */
.text-image-section .text-column {}

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

.text-image-section .section-description {
  font-size: 18px;
  line-height: 28px;
}

.text-image-section .section-description p {
  margin: 0 0 15px 0;
}

.text-image-section .section-description p:last-child {
  margin-bottom: 0;
}

/* Button */
.text-image-section .section-button {
  display: inline-block;
  padding: 14px 32px;
  background: #b8860b;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #b8860b;
}

.text-image-section .section-button:hover {
  background: transparent;
}

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

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

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

  .text-image-section .section-image {
    width: 334px;
    height: 390px;
  }

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

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

@media (max-width: 640px) {

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

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

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

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