#hero {
  background-color: white;
  border-bottom: 0.5px solid black;
  padding-top: 30px;
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 85%);
  pointer-events: none;
}
.hero-wrapper {
  width: calc(100vw - 2*var(--event-general-padding));
  max-width: 1540px;
  margin: 0 auto 30px auto;
}
.hero-wrapper img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding-bottom: 30px;
}
@media (min-width: 960px) {
  .hero-wrapper {
    display: grid;
    column-gap: var(--event-general-gap);
    row-gap: var(--col-gap);
    margin-bottom: var(--col-gap);
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "image  title" "image  details";
  }
  .hero-wrapper .hero-title {
    grid-area: title;
  }
  .hero-wrapper img {
    grid-area: image;
    border-bottom: none;
    padding-bottom: unset;
    margin-top: unset;
  }
  .hero-wrapper .hero-details {
    grid-area: details;
    padding-top: unset;
  }
}
@media (min-width: 1540px) {
  .hero-wrapper {
    grid-template-columns: 2fr 3fr;
    grid-template-areas: "image title   " "image details";
  }
  .hero-wrapper .hero-details {
    grid-template-columns: 1fr 1fr;
  }
  .hero-wrapper .hero-details-col:last-child {
    width: 240px;
  }
}
.hero-title h1 {
  font-family: 'vida_32_probold';
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  vertical-align: middle;
  margin: 0 0 10px 0;
}
.hero-title h2 {
  font-family: 'vida_32_proregular';
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
@media (min-width: 640px) {
  .hero-title h1 {
    font-size: 42px;
  }
}
@media (min-width: 1540px) {
  .hero-title h1 {
    font-size: 52px;
  }
}
.hero-details {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--event-general-gap);
}
@media (min-width: 640px) {
  .hero-details {
    grid-template-columns: 1fr 240px;
  }
}
@media (min-width: 960px) and (max-width: 1539px) {
  .hero-details {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 1540px) {
  .hero-details {
    gap: unset;
  }
}
.hero-details .hero-details-col {
  margin-right: auto;
}
.hero-details .hero-details-col:last-child {
  margin-right: 0;
  padding-right: 30px;
}
.hero-details .hero-details-data {
  margin: 10px 0 20px 0;
}
.hero-details .hero-details-data:last-child {
  margin-bottom: 0;
}
.hero-details p {
  font-family: Arial;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--gray);
  margin: 0 0 5px 0;
}
.hero-details b {
  font-family: 'vida_32_proregular';
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin: 0 0 20px 0;
}
.hero-details a {
  color: var(--archi-blue);
  text-decoration: none;
}
