/*******************************
 * Dental Hygiene Ad  STYLES
 ******************************/
.ad-wrapper {
  background-color: #f4f4f8;
  padding: 50px 0;
}

.hero-dental-clinic-event {
  background-color: #172d79;
  background-image: url("/_resources/images/banners/dental-clinic-event-bg-small.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-family: "Roboto Condensed", "PT Sans", sans-serif;
  text-transform: uppercase;
  height: 100%;
  position: relative;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
}

.hero-dental-clinic-event__title {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto Condensed", "PT Sans", sans-serif;
}

.hero-dental-clinic-event__title > span {
  background: linear-gradient(180deg, #fff 0%, #6dc5e8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-dental-clinic-event__title > em {
  font-style: italic;
  font-size: 3rem;
  background: linear-gradient(#fff 3.68%, #9efad8 56.47%, #dbdbd7 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  padding-block: 0.25rem;
  margin-block: 1rem 2rem;
}

.hero-dental-clinic-event__title > em::before,
.hero-dental-clinic-event__title > em::after {
  content: "";
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(158, 250, 216, 0.05) 0%, #9efad8 50.96%, rgba(158, 250, 216, 0.05) 96.63%);
  position: absolute;
  left: 0;
  top: 0;
}

.hero-dental-clinic-event__title > em::after {
  top: unset;
  bottom: 0;
}

.hero-dental-clinic-event__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-dental-clinic-event__date {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  font-style: italic;
  background: linear-gradient(#fff 3.68%, #9efad8 56.47%, #dbdbd7 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-dental-clinic-event__location {
  font-size: 1.5rem;
  color: white;
  margin: 0;
  margin-top: 1rem;
  line-height: 1;
}

.hero-dental-clinic-event__location > span:nth-child(2) {
  color: rgba(255, 255, 255, 0.35);
}

.hero-dental-clinic-event__location > span:nth-child(3) {
  color: #9efad8;
}

.hero-dental-clinic-event__action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-dental-clinic-event__action > a {
  font-size: 0.85rem;
  display: inline-block;
  padding: 1em 2em;
  background-color: #c20430;
  border: 2px solid #c20430;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 150ms ease-in;
  align-self: start;
}

.hero-dental-clinic-event__action > a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #c20430;
  border: 2px solid #c20430;
}

@media screen and (min-width: 480px) {
  .hero-dental-clinic-event {
    background-image: url("/_resources/images/banners/dental-clinic-event-bg-med.webp");
  }
  .hero-dental-clinic-event__action > a {
    font-size: 0.85rem;
  }
}
@media screen and (min-width: 640px) {
  .hero-dental-clinic-event {
    background-image: url("/_resources/images/banners/dental-clinic-event-bg-large.webp");
    background-position-x: center;
  }
  .hero-dental-clinic-event__title {
    font-size: 2.25rem;
  }
  .hero-dental-clinic-event__title > em {
    font-size: 4.5rem;
  }
  .hero-dental-clinic-event__date {
    font-size: 3rem;
  }
  .hero-dental-clinic-event__location {
    font-size: 2.25rem;
  }
  .hero-dental-clinic-event__action {
    flex-direction: row;
  }
  .hero-dental-clinic-event__action > a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .hero-dental-clinic-event {
    background-image: url("/_resources/images/banners/dental-clinic-event-bg-xlarge.webp");
    background-position-x: right;
  }
  .hero-dental-clinic-event__title {
    font-size: 3.5rem;
  }
  .hero-dental-clinic-event__title > em {
    font-size: 128px;
  }
  .hero-dental-clinic-event__date {
    font-size: 4.5rem;
  }
  .hero-dental-clinic-event__location {
    font-size: 3rem;
  }
}
/*** END DENTAL HYGIENE AD STYLES ***/