/**
 * @file
 * Styles for the footer promo block.
 */

.site-footer__promo {
  border-block-end: 1px solid var(--color--gray-20);
}

.site-footer__promo .container {
  margin: 0 auto;
}

.footer-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.footer-promo__content {
  flex: 0 0 auto;
  max-width: 480px;
  margin: 2rem 0;
}

.footer-promo__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color--white);
  margin: 0 0 var(--sp) 0;
  line-height: 1.2;
}

.footer-promo__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color--gray-65);
}

.footer-promo__image-wrap {
  flex: 0 0 auto;
  width: 45%;
  max-width: 600px;
  align-self: flex-end;
}

.footer-promo__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom center;
  filter: brightness(0.9);
}

@media (max-width: 767px) {
  .footer-promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-promo__image-wrap {
    width: 100%;
    max-width: 100%;
  }
}
