/**
 * Statue of Liberty Site - Design System Variables
 * Brand: Lavender (Primary), Sandy Beige (Secondary), Golden Yellow (Tertiary)
 *
 * This file overrides the plugin_pd_components base _variables.scss.
 * It must be placed at the same path in the cartridge overlay chain.
 */
.text-image-lr {
  width: 100%;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .text-image-lr {
    padding: 2rem 0;
  }
}
.text-image-lr--dark {
  background-color: #eed5f7;
}
.text-image-lr--light {
  background-color: #faf2ed;
}
.text-image-lr--neutral {
  background-color: #fff;
}
.text-image-lr .text-image-lr__title {
  color: #464646;
}
.text-image-lr .text-image-lr__description {
  color: #464646;
}
.text-image-lr .text-image-lr__cta {
  background-color: #dba3ee;
  color: #0d0d0d;
}
.text-image-lr .text-image-lr__cta:hover {
  background-color: #c976e6;
}
.text-image-lr--image-right .text-image-lr__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-lr--image-right .text-image-lr__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.text-image-lr--image-left .text-image-lr__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .text-image-lr--image-left .text-image-lr__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.text-image-lr__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .text-image-lr__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.text-image-lr__cta:hover {
  text-decoration: none;
}

.text-image-lr__image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .text-image-lr__image-wrapper--portrait {
    max-width: 100%;
  }
}

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