/* ============================================================
   Txt Img 3 Block
   ============================================================ */

.block--txt-img-3 {
  width: 100%;
  padding: clamp(4rem, 7vw, 6.5rem) var(--edgepad);
  background: var(--txt-img-3-bg, var(--sbeige));
}

.block--txt-img-3>h2 {
  display: none;
}

.block--txt-img-3 .content {
  width: 100%;
}

.txt-img-3 {
  width: 100%;
}

.txt-img-3__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
}

.txt-img-3__media {
  display: flex;
  justify-content: stretch;
}

.txt-img-3__image-frame {
  width: 100%;
}

.txt-img-3__image-frame .field,
.txt-img-3__image-frame .field__item {
  width: 100%;
}

.txt-img-3__image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 0.84 / 1;
  object-fit: cover;
  object-position: center;
}

.txt-img-3__copy {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
}

.txt-img-3__copy-inner {
  width: 100%;
}

.txt-img-3__eyebrow .eyebrow {
  margin-bottom: 1rem;
  color: var(--smedgrey);
}

.txt-img-3__title {
  color: var(--sbrown);
}

.txt-img-3__title .field,
.txt-img-3__title .field__item {
  margin: 0;
}

.txt-img-3__title h2 {
  margin: 0;
  text-wrap: balance;
  padding-bottom: 8px;
}

.txt-img-3__divider {
  width: 2.25rem;
  height: 1px;
  margin: 1.2rem 0 1.4rem;
  background: rgba(var(--sbrownrgb), 0.7);
}

.txt-img-3__body,
.txt-img-3__body p,
.txt-img-3__body li {
  color: rgba(83, 83, 83, 0.95);
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.55;
}

.txt-img-3__body p {
  margin: 0 0 1rem;
}

.txt-img-3__body p:last-child {
  margin-bottom: 0;
}

.txt-img-3__actions {
  margin-top: 1.6rem;
}

.block--txt-img-3 .txt-img-3__actions .paragraph-cta__link,
.block--txt-img-3 .txt-img-3__actions button.cta,
.block--txt-img-3 .txt-img-3__actions div.alpine-link a {
  background: var(--sbrown);
  border: 1px solid var(--sbrown);
}

.block--txt-img-3 .txt-img-3__actions .paragraph-cta__text,
.block--txt-img-3 .txt-img-3__actions button.cta .cta__text,
.block--txt-img-3 .txt-img-3__actions div.alpine-link a {
  color: var(--sbeige);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

@media (max-width: 991px) {
  .block--txt-img-3 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .txt-img-3__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .txt-img-3__media {
    justify-content: stretch;
  }

  .txt-img-3__image-frame {
    width: 100%;
  }

  .txt-img-3__copy {
    padding-bottom: 0;
  }

  .txt-img-3__copy-inner {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .block--txt-img-3 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .txt-img-3__image-frame img {
    aspect-ratio: 0.9 / 1;
  }

  .txt-img-3__title h2 {
    /* font-size: 1.9rem; */
  }
}