/**** Symposium EXPLORE NAV  ****/
.symposium-explore-nav {
  font-size: 1rem;
  margin: 0;
}
.symposium-explore-nav__title {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
}

.symposium-explore-nav__mobile {
  background: none;
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(168, 168, 170, 0.25);
  cursor: pointer;
}

.symposium-explore-nav__mobile:hover,
.symposium-explore-nav__mobile:focus {
  color: #0076bb;
}

.symposium-explore-nav__links {
  display: none;
}

.symposium-explore-nav-active {
  display: block;
}

.symposium-explore-nav__dropdown {
  font-size: 1.5rem;
}

.symposium-explore-nav__desktop {
  display: none;
}

.symposium-explore-nav__links {
  border: 1px solid rgba(168, 168, 170, 0.25);
  padding: 1rem;
  margin-bottom: 1rem;
}
.symposium-explore-nav__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  gap: 1em;
}
.symposium-explore-nav__links a.active {
  text-decoration: none;
  font-weight: bold;
}

@media screen and (min-width: 880px) {
  .symposium-explore-nav__desktop {
    display: block;
  }

  .symposium-explore-nav__mobile {
    display: none;
  }

  .symposium-explore-nav {
    font-size: 1.125rem;
    position: relative;
    margin: 5rem 0;
  }
  .symposium-explore-nav__title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: none;
    display: inline-block;
    background: white;
    padding-inline: 1rem;
    position: relative;
    left: -1rem;
  }

  .symposium-explore-nav__links {
    border: none;
    padding: unset;
    display: block;
    margin-top: 1.5rem;
  }
  .symposium-explore-nav__links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }

  .symposium-explore-nav__links a {
    text-transform: uppercase;
    text-decoration: none;
  }

  .symposium-explore-nav__links a::before {
    font-family: "FontAwesome";
    content: "\f105";
    display: inline-block;
    margin-right: 0.5em;
  }
}

/**** Symposium Styles  ****/
.columns-2 {
  columns: 280px 2;
  column-gap: 2rem;
}

.divider-top::before {
  content: "";
  width: 120px;
  height: 4px;
  background-color: #4b4f55;
  position: absolute;
  top: calc(4px - 1em);
}

.divider-top--yellow::before {
  background-color: #f6b436;
}

.divider-top--white::before {
  background-color: white;
}

.divider-top--blue::before {
  background-color: #002f87;
}

.symposium-poster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-wrap: balance;
}

.symposium-poster__design > img {
  display: block;
  border: 4px solid white;
  width: 100%;
}

.symposium-poster__title {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.symposium-poster__subtitle {
  font-size: 2.25rem;
  line-height: 1;
  font-family: "PT Sans Narrow", "PT Sans", "Roboto", sans-serif;
  font-weight: bold;
  color: #feda65;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.symposium-poster__subtitle > span {
  color: white;
  display: block;
}

.symposium-poster__date {
  margin-top: 2.25rem;
  margin-bottom: 0;
  font-family: "PT Sans Narrow", "PT Sans", "Roboto", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #f0ea9c;
  text-transform: uppercase;
}

.symposium-poster__location {
  font-family: "PT Sans Narrow", "PT Sans", "Roboto", sans-serif;
  font-size: 1.3125rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0;
}

.symposium-poster__deadline {
  margin-top: 2.255rem;
  font-size: 1.125rem;
  color: #f0ea9c;
}
.symposium-poster__deadline > span {
  color: white;
}

.symposium-poster__abstract-cta {
  text-align: center;
  margin-top: 2.5em;
}

.symposium-video-blocks {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.symposium-video-blocks > * {
  flex: 1 1 300px;
}

.symposium-video__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.symposium-video__link:hover > img,
.symposium-video__link:focus > img {
  outline: 2px solid #0076bb;
}

.symposium-video-blocks__title {
  margin-top: 0.5em;
}

@media screen and (min-width: 600px) {
  .symposium-poster {
    grid-template-columns: 1fr 1fr;
  }

  .symposium-poster__abstract-cta {
    text-align: left;
    margin-top: 0;
  }

  .symposium-poster__design > img {
    width: initial;
  }
}
@media screen and (min-width: 860px) {
  .symposium-poster {
    grid-template-columns: auto 1fr;
  }

  .symposium-poster__title {
    font-size: 1.75rem;
  }

  .symposium-poster__subtitle {
    font-size: 4.5rem;
    margin-top: 1.75rem;
  }

  .symposium-poster__date {
    margin-top: 3.75rem;
    font-size: 2.625rem;
  }

  .symposium-poster__location {
    font-size: 1.75rem;
  }

  .symposium-poster__deadline {
    margin-top: 3.75rem;
    font-size: 1.5rem;
  }
}