/* CTA */

.cta {
  padding: 40px 0;
}

/* layout */
.cta__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* image */
.cta__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* content */
.cta__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__title {
  max-width: 500px;
}

.cta__text {
  max-width: 600px;
}

/* button */
.cta__button {
  display: inline-block;
  padding: 12px 20px;
  background: #a67c52;
  color: #fff;
  font-size: 14px;
}

/* desktop */
@media (min-width: 768px) {
  .cta__container {
    flex-direction: row;
    align-items: center;
  }

  .cta__image {
    flex: 1;
  }

  .cta__content {
    flex: 1;
  }

  .cta__image img {
    height: 350px;
  }
}