/* Shared styles */
.l-section--text-with-image .l-section__content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (min-width: 992px) {
  .l-section--text-with-image .l-section__content {
    flex-direction: row;
  }
}

/* Figure styles */
.l-section--text-with-image .figure {
  flex: 0 0 40%;
  display: block;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
}
.l-section--text-with-image .figure .figure__caption {
  margin-top: 0;
}
@media (min-width: 992px) {
  .l-section--text-with-image .figure {
    display: flex;
  }
}

.l-section--text-with-image .figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Text content styles */
.l-section--text-with-image .field {
  flex: 0 0 60%;
  padding: 30px;
}

/* Conditional alignment based on classes */
.l-section--text-with-image.cta__alignment--0 .figure {
  order: -1;
}
@media (min-width: 992px) {
  .l-section--text-with-image.cta__alignment--0 .figure {
    order: 2;
  }
}

.l-section--text-with-image.cta__alignment--1 .figure {
  order: -1;
}

.l-section--text-with-image.cta__alignment--0 .field--name-field-text-content,
.l-section--text-with-image.cta__alignment--1 .field--name-field-text-content {
  padding: 30px;
}

/* Conditional background color */
.l-section--text-with-image.cta__color--1 .field--name-field-text-content {
  background: var(--color-gray-100);
}

.l-section--text-with-image.cta__color--2 .field--name-field-text-content {
  background: var(--color-bg-blue);
}

.l-section--text-with-image.cta__color--2 .field--name-field-text-content * {
  color: #fff; /* Adjust text color for better contrast */
}

/* Shared styles */
.l-section--content-section .l-section__content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (min-width: 992px) {
  .l-section--content-section .l-section__content {
    flex-direction: row;
  }
}

/* Figure styles */
.l-section--content-section .content-section__image-with-text {
  flex: 0 0 40%;
  display: block;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
}
.l-section--content-section .content-section__image-with-text .figure__caption {
  margin-top: 0;
}
@media (min-width: 992px) {
  .l-section--content-section .content-section__image-with-text {
    display: flex;
  }
}

.l-section--content-section .content-section__image-with-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Text content styles */
.l-section--content-section .field {
  flex: 0 0 60%;
  padding: 30px;
}
.l-section--content-section .field p {
  text-align: left;
}

/* Conditional alignment based on classes */
.l-section--content-section.cta__alignment--0 .content-section__image-with-text {
  order: -1;
}
@media (min-width: 992px) {
  .l-section--content-section.cta__alignment--0 .content-section__image-with-text {
    order: 2;
  }
}

.l-section--content-section.cta__alignment--1 .content-section__image-with-text {
  order: -1;
}

.l-section--content-section.cta__alignment--0 .field--name-field-text-content,
.l-section--content-section.cta__alignment--1 .field--name-field-text-content {
  padding: 30px;
  margin-bottom: 0;
}

/* Conditional background color */
.l-section--content-section.cta__color--1 .field--name-field-text-content {
  background: var(--color-gray-100);
}

.l-section--content-section.cta__color--2 .field--name-field-text-content {
  background: var(--color-bg-blue);
  color: #fff;
}

.l-section--content-section.cta__color--2 .field--name-field-text-content * {
  color: #fff; /* Adjust text color for better contrast */
}