.euBanner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  font-size: 1.2rem;
  font-family: "big-caslon-fb", serif;
  border-top: 1px solid black;
  max-width: 1552px;
  margin: clamp(0.2rem, 5vw, 200px);
}
.euBanner__viewCards {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.euBanner__cards {
  grid-area: 1 / 2 / 2 / 5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.euBanner > div {
  margin-top: clamp(30px, 6vh, 80px);
  height: 100%;
}
.euBanner img {
  width: 100%;
  display: block;
}
.euBanner .euBanner__viewCards h2 {
  margin-bottom: 1.8rem;
  margin-top: 0.8rem;
}
.euBanner .euBanner__viewCards p {
  margin: 0;
}
.euBanner .euBanner__cta {
  font-family: "sofia-pro", sans-serif;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  border: 1px solid black;
  padding: 0.875rem;
}
.euBanner a {
  text-decoration: none;
  color: #454545;
}
.euBanner .euBanner__img-cta {
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0;
}
.euBanner .euBanner__fig {
  width: 100%;
  margin: 0;
}
.euBanner h3.euBanner__fig-cap {
  font-size: clamp(16px, 1.5vw, 22px);
}
.euBanner h4.euBanner__fig-cap {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
}
.euBanner .euBanner__fig-cap {
  margin-bottom: 5px;
  margin-top: 19px;
}
.euBanner .euBanner__fig {
  max-height: 474px;
}
/* button bottom margin */
@media (min-width: 1401px) {
  .euBanner {
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .euBanner {
    grid-template-rows: 1fr 2fr;
    grid-template-columns: 1fr;
  }
  .euBanner__viewCards {
    grid-area: 1 / 1 / 2 / 2;
  }
  .euBanner__cards {
    grid-area: 2 / 1 / 3/ 5;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .euBanner__cards > div {
    flex: 0 0 250px;
    scroll-snap-align: start;
  }
  .euBanner > div {
    margin-top: 0;
    height: auto;
  }
  .euBanner .euBanner__fig {
    max-height: fit-content;
  }
}
