/**
 * Design System Variables
 */
.text-image-lr {
  width: 100%;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .text-image-lr {
    padding: 2rem 0;
  }
}
.text-image-lr--dark {
  background-color: #6f417f;
}
.text-image-lr--dark .text-image-lr__title {
  color: #fff;
}
.text-image-lr--dark .text-image-lr__description {
  color: rgba(255, 255, 255, 0.9);
}
.text-image-lr--dark .text-image-lr__cta {
  background-color: #dba3ee;
  color: #0d0d0d;
}
.text-image-lr--dark .text-image-lr__cta:hover {
  background-color: #c976e6;
}
.text-image-lr--light {
  background-color: #faf1fd;
}
.text-image-lr--light .text-image-lr__title {
  color: #6f417f;
}
.text-image-lr--light .text-image-lr__description {
  color: #464646;
}
.text-image-lr--light .text-image-lr__cta {
  background-color: #dba3ee;
  color: #0d0d0d;
}
.text-image-lr--light .text-image-lr__cta:hover {
  background-color: #c976e6;
}
.text-image-lr--neutral {
  background-color: #fff;
}
.text-image-lr--neutral .text-image-lr__title {
  color: #0d0d0d;
}
.text-image-lr--neutral .text-image-lr__description {
  color: #464646;
}
.text-image-lr--neutral .text-image-lr__cta {
  background-color: #dba3ee;
  color: #0d0d0d;
}
.text-image-lr--neutral .text-image-lr__cta:hover {
  background-color: #c976e6;
}
.text-image-lr--secondary {
  background-color: #f4f3f3;
}
.text-image-lr--secondary .text-image-lr__title {
  color: #0d0d0d;
}
.text-image-lr--secondary .text-image-lr__description {
  color: #464646;
}
.text-image-lr--secondary .text-image-lr__cta {
  background-color: #dba3ee;
  color: #0d0d0d;
}
.text-image-lr--secondary .text-image-lr__cta:hover {
  background-color: #c976e6;
}
.text-image-lr--image-right .text-image-lr__container {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-lr--image-right .text-image-lr__container {
    flex-direction: column;
  }
}
.text-image-lr--image-left .text-image-lr__container {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .text-image-lr--image-left .text-image-lr__container {
    flex-direction: column;
  }
}

.text-image-lr__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .text-image-lr__container {
    padding: 0 1.5rem;
    gap: 2rem;
  }
}

.text-image-lr__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .text-image-lr__content {
    order: 2;
  }
}

.text-image-lr__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .text-image-lr__title {
    font-size: 1.5rem;
  }
}

.text-image-lr__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #464646;
  margin: 0;
}

.text-image-lr__description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
.text-image-lr__description p {
  margin: 0 0 1rem;
}
.text-image-lr__description p:last-child {
  margin-bottom: 0;
}
.text-image-lr__description ul, .text-image-lr__description ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.text-image-lr__description a {
  color: inherit;
  text-decoration: underline;
}
.text-image-lr__description a:hover {
  text-decoration: none;
}

.text-image-lr__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  margin-top: 1rem;
  width: fit-content;
}
.text-image-lr__cta:hover {
  text-decoration: none;
}

.text-image-lr__image-wrapper {
  flex: 1;
  max-width: 50%;
  border-radius: 1rem;
  overflow: hidden;
}
.text-image-lr__image-wrapper--landscape {
  aspect-ratio: 664 / 460;
}
.text-image-lr__image-wrapper--portrait {
  aspect-ratio: 436 / 640;
  max-width: 35%;
}
@media (max-width: 768px) {
  .text-image-lr__image-wrapper {
    max-width: 100%;
    order: 1;
  }
  .text-image-lr__image-wrapper--portrait {
    max-width: 100%;
  }
}

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