body.page-info .info-panel {
  padding: 18px;
}

body.page-info .info-inner {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(320px, 520px);
  justify-content: center;
  align-items: start;
  gap: 36px;
}

/* image column sits toward the middle on its right edge */
body.page-info .info-left {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* text column sits toward the middle on its left edge */
body.page-info .info-right {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* text */
body.page-info .info-head {
  width: 100%;
  max-width: 500px;
}

body.page-info .info-kicker {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-info .info-lead {
  margin: 0 0 14px 0;
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
}

body.page-info .info-copy {
  margin: 0 0 12px 0;
  max-width: 500px;
  font-size: 0.96rem;
  line-height: 1.62;
  color: rgba(17, 17, 17, 0.68);
}

body.page-info .info-contact {
  margin-top: 28px;
  width: 100%;
  max-width: 500px;
}

body.page-info .info-contact-title {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-info .info-contact-copy {
  margin: 0 0 12px 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: rgba(17, 17, 17, 0.68);
}

body.page-info .info-email-wrap {
  margin: 0;
}

body.page-info .info-email {
  display: inline-block;
  font-size: 0.96rem;
  line-height: 1.4;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

body.page-info .info-email:hover {
  opacity: 0.72;
}

/* socials */
body.page-info .info-socials {
  margin-top: 18px;
}

body.page-info .info-socials-title {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-info .info-socials-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

body.page-info .info-social-link {
  display: inline-block;
  font-size: 0.96rem;
  line-height: 1.4;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

body.page-info .info-social-link:hover {
  opacity: 0.72;
}

body.page-info .info-social-link--icon {
  border-bottom: 0;
  padding-bottom: 0;
  line-height: 0;
}

body.page-info .info-social-link--icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

body.page-info .info-social-link--icon:hover svg {
  opacity: 0.72;
}

/* carousel */
body.page-info .info-carousel {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

body.page-info .info-carousel .carousel__viewport {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.28);
  background: transparent;
}

body.page-info .info-carousel .carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  will-change: transform;
}

body.page-info .info-carousel .carousel__item {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

body.page-info .info-carousel .carousel__media {
  width: 100%;
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  background: transparent;
}

body.page-info .info-carousel .carousel__media img,
body.page-info .info-carousel .carousel__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

body.page-info .info-carousel .carousel__text {
  display: none;
}

body.page-info .info-carousel__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 10px;
  width: 100%;
}

body.page-info .info-carousel .carousel__btn {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  background: transparent;
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

body.page-info .info-carousel .carousel__btn + .carousel__btn {
  border-left: 0;
}

body.page-info .info-carousel .carousel__btn:hover {
  background: rgba(17, 17, 17, 0.04);
}

body.page-info .info-carousel .carousel__btn:disabled {
  opacity: 0.32;
  cursor: default;
  background: transparent;
}

@media (max-width: 980px) {
  body.page-info .info-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.page-info .info-left,
  body.page-info .info-right {
    justify-content: flex-start;
    align-items: flex-start;
  }

  body.page-info .info-head,
  body.page-info .info-lead,
  body.page-info .info-copy,
  body.page-info .info-contact {
    max-width: 100%;
  }

  body.page-info .info-carousel {
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  body.page-info .info-panel {
    padding: 14px;
  }

  body.page-info .info-inner {
    gap: 18px;
  }

  body.page-info .info-kicker,
  body.page-info .info-contact-title,
  body.page-info .info-socials-title {
    font-size: 0.88rem;
  }

  body.page-info .info-lead {
    font-size: 1rem;
    line-height: 1.4;
  }

  body.page-info .info-copy,
  body.page-info .info-contact-copy,
  body.page-info .info-email,
  body.page-info .info-social-link {
    font-size: 0.92rem;
  }

  body.page-info .info-carousel .carousel__btn {
    height: 40px;
  }

  body.page-info .info-social-link--icon svg {
    width: 22px;
    height: 22px;
  }
}

body.page-info .info-socials {
  margin-top: 18px;
}

body.page-info .info-socials-title {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-info .info-socials-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

body.page-info .info-social-link {
  display: inline-block;
  font-size: 0.96rem;
  line-height: 1.4;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

body.page-info .info-social-link:hover {
  opacity: 0.72;
}

body.page-info .info-social-link--icon {
  border-bottom: 0;
  padding-bottom: 0;
  line-height: 0;
}

body.page-info .info-social-link--icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

body.page-info .info-social-link--icon:hover svg {
  opacity: 0.72;
}