.pao-art-promo {
  position: relative;
  display: block;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #f5f3ee;
  color: #182124;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
}

.pao-art-promo:hover .pao-art-promo-button {
  background: #283033;
}

.pao-art-promo:focus-visible {
  outline: 3px solid var(--pao-color-standard);
  outline-offset: 3px;
}

.pao-art-promo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pao-art-promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 54%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 22px 24px;
}

.pao-art-promo-eyebrow {
  color: #007f91;
  font-size: 0.78rem;
  font-weight: 800;
}

.pao-art-promo h2 {
  margin: 0;
  color: #151b1d;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 850;
  line-height: 1.22;
}

.pao-art-promo-copy > p:not(.pao-art-promo-eyebrow) {
  max-width: 31rem;
  color: #3e4a4e;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pao-art-word {
  color: inherit;
  white-space: nowrap;
}

.pao-art-word > span {
  color: #008fa2;
}

.pao-art-promo-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 9px 15px;
  border: 1px solid #171b1d;
  border-radius: 6px;
  background: #171b1d;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.pao-art-promo-button .pao-art-word > span {
  color: var(--pao-color-standard);
}

@media (max-width: 720px) {
  .pao-art-promo {
    display: grid;
    aspect-ratio: auto;
  }

  .pao-art-promo-image {
    position: relative;
    order: 2;
    height: 160px;
    object-position: right center;
  }

  .pao-art-promo-copy {
    order: 1;
    width: 100%;
    height: auto;
    gap: 7px;
    padding: 16px;
  }

  .pao-art-promo h2 {
    font-size: 1.25rem;
  }

  .pao-art-promo-button {
    width: 100%;
    margin-top: 4px;
  }
}
