/* BEGIN COLLEGE/UNIT LANDING PAGE LINK STYLES */

#vtcontainer_landing_mobile {
  margin: 2em 0;
}

.vt-landingPage-related {
  display: flex;
  flex-wrap: wrap;
}

.vt-landingPage-link-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #vtcontainer_landing_mobile {
    margin: 2em 12.5%;
  }
  .vt-landingPage-link-wrapper {
    width: 50%;
  }
  .vt-landingPage-link-wrapper:nth-child(even) {
    padding: 0 0 0 0.5em;
  }
  .vt-landingPage-link-wrapper:nth-child(odd) {
    padding: 0 0.5em 0 0;
  }
}

@media screen and (min-width: 992px) {
  #vtcontainer_landing_mobile {
    display: none;
  }
}


/* 
@media screen and (min-width: 1200px) {
  .vt-landingPage-link-wrapper {
    width: 33.3333%;
  }
  .vt-landingPage-link-wrapper:nth-child(even) {
    padding-left: inherit;
  }
  .vt-landingPage-link-wrapper:nth-child(odd) {
    padding-right: inherit;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+1) {
    padding-right: 0.6667em;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+2) {
    padding-left: 0.3333em;
    padding-right: 0.3333em;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+3) {
    padding-left: 0.6667em;
  }
}

@media screen and (min-width: 2400px) {
  .vt-landingPage-link-wrapper {
    width: 25%;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+1) {
    padding-right: inherit;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+2) {
    padding-left: inherit;
    padding-right: inherit;
  }
  .vt-landingPage-link-wrapper:nth-child(3n+3) {
    padding-left: inherit;
  }
  .vt-landingPage-link-wrapper:nth-child(4n+1) {
    padding-right: 0.75em;
  }
  .vt-landingPage-link-wrapper:nth-child(4n+2) {
    padding-left: 0.25em;
    padding-right: 0.5em;
  }
  .vt-landingPage-link-wrapper:nth-child(4n+3) {
    padding-left: 0.5em;
    padding-right: 0.25em;
  }
  .vt-landingPage-link-wrapper:nth-child(4n+4) {
    padding-left: 0.75em;
  }
} */

.vt-landingPage-link {
  display: block;
  width: 100%;
  white-space: normal;
  text-align: center;
  padding: 1em;
}

.vt-landingPage-link-wrapper:nth-child(3n+1) .vt-landingPage-link {
  background-color: var(--vt-teal-3s);
}

.vt-landingPage-link-wrapper:nth-child(3n+1) .vt-landingPage-link:hover {
  background-color: var(--vt-teal);
  border-color: var(--vt-white);
}

.vt-landingPage-link-wrapper:nth-child(3n+2) .vt-landingPage-link {
  background-color: var(--vt-purple-3s);
}

.vt-landingPage-link-wrapper:nth-child(3n+2) .vt-landingPage-link:hover {
  background-color: var(--vt-purple);
  border-color: var(--vt-white);
}

.vt-landingPage-link-wrapper:nth-child(3n+3) .vt-landingPage-link {
  background-color: black;
}

.vt-landingPage-link-wrapper:nth-child(3n+3) .vt-landingPage-link:hover {
  background-color: #131313;
  border-color: #131313;
}

.vt-landingPage-link-wrapper:nth-child(3n+1) .vt-landingPage-link:focus,
.vt-landingPage-link-wrapper:nth-child(3n+2) .vt-landingPage-link:focus,
.vt-landingPage-link-wrapper:nth-child(3n+3) .vt-landingPage-link:focus {
  outline-color: rgb(0, 0, 0);
  outline-offset: 3px;
  outline-style: dashed;
  outline-width: 2px;
}

.vt-landingPage-link-wrapper:nth-child(even) .vt-landingPage-link,
.vt-landingPage-link-wrapper:nth-child(odd) .vt-landingPage-link {
  color: var(--vt-white);
  font-family: 'gineso-condensed', sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
}

/* BEGIN VT PRIORITY STYLES */

/** VT Advantage **/
.vt-landingPage-link-wrapper.vt-landingPage-advantage .vt-landingPage-link {
  background-color: var(--vt-maroon)!important;
}

.vt-landingPage-link-wrapper.vt-landingPage-advantage .vt-landingPage-link:hover {
  background-color: var(--vt-maroon-2s)!important;
  border-color: var(--vt-white)!important;
}

/** VT Global Distinction **/
.vt-landingPage-link-wrapper.vt-landingPage-globalDistinction .vt-landingPage-link {
  background-color: var(--vt-burntOrange)!important;
}

.vt-landingPage-link-wrapper.vt-landingPage-globalDistinction .vt-landingPage-link:hover {
  background-color: var(--vt-burntOrange-2s)!important;
  border-color: var(--vt-white)!important;
}

/* END VT PRIORITY STYLES */

/* END COLLEGE/UNIT LANDING PAGE LINK STYLES */

/* BEGIN NEWS SITE BROWSE MENU COLLAPSIBLE ITEMS STYLES */

.vt-browse-menu-item-link-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vt-browse-menu-item-link-wrapper .fa-times {
  /* width: 0.75em;
  height: 0.75em; */
  transform: rotate(-45deg);
  transition: all 0.2s ease-in-out;
}

.vt-browse-menu-item-link-wrapper.vt-open .fa-times,
.vt-browse-menu-item-link-wrapper.active .fa-times {
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}

.vt-browse-menu-item-link-wrapper ~ .vt-browse-menu-subitems {
  display: none;
  /* margin-bottom: 1.5em; */
}

/* .vt-browse-menu-item-link-wrapper ~ .submenu a {
  display: none;
  font-family: "Acherus", sans-serif;
  font-size: 0.8em;
  font-weight: 300;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  padding-bottom: 0;
  margin-bottom: 0;
} */

.vt-browse-menu-item-link-wrapper.vt-open ~ .vt-browse-menu-subitems,
.vt-browse-menu-item-link-wrapper.active ~ .vt-browse-menu-subitems {
  display: block;
}

/* .vt-browse-menu-item-link-wrapper.active ~ .submenu a {
  padding-top: 0;
  margin-top: 10px;
  display: inline-block;
} */

/* #vt_main_nav > .nav-item > .link-wrapper a {
  text-decoration: underline;
} */

/* #vt_main_nav .has-submenu {
  padding-right: 32px;
} */

/* #vt_main_nav .fold-indicator {
  position: relative;
  display: inline-block;
} */

.vt-browse-menu-fold-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgba(229, 225, 230, 0.5);
  color: rgb(255, 255, 255);
  font-size: 1em;
  line-height: 1;
  margin-left: 1em;
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.vt-browse-menu-fold-button:focus {
  background-color: transparent;
}

/* END NEWS SITE BROWSE MENU COLLAPSIBLE ITEMS STYLES */

/* BEGIN VIDEO CONTACT STYLES */

.vt-video-page .vt-authors-body {
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0!important;
}
.vt-authors-body .vt-video-contact-heading {
  color: rgb(255, 255, 255);
  font-family: "gineso-condensed", sans-serif;
  font-size: 2em !important;
  margin-right: 0.33em;
  margin-bottom: 0.25em;
  line-height: 1;
}
.vt-authors-body #vt_video_authors,
.vt-authors-body #vt_video_authors li {
  line-height: 1;
}
.vt-authors-body #vt_video_authors {
  margin-top: 0.25em;
}
.vt-authors-body .vt-video-contact {
  padding-bottom: 0.67em;
  margin-top: 0.67em;
  border-bottom: 1px solid var(--vt-white);
}
.vt-authors-body .vt-video-contact:first-of-type {
  margin: 0;
}
.vt-authors-body .vt-video-contact:last-of-type {
  padding: 0;
  border: none;
}
.vt-authors-body .vt-video-contact p {
  font-family: "gineso-condensed", sans-serif;
  line-height: 1;
  margin: 0;
}
.vt-authors-body .vt-video-contact p:first-of-type {
  font-weight: 500;
  margin-bottom: 0.25em;
  font-size: 1.625em;
}
@media screen and (min-width: 768px) {
  .vt-authors-body .vt-video-contact p:first-of-type {
    font-size: 1.625em;
  }
}
@media screen and (min-width: 992px) {
  .vt-authors-body .vt-video-contact p:first-of-type {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1200px) {
  .vt-authors-body .vt-video-contact p:first-of-type {
    font-size: 1.75em;
  }
}
.vt-authors-body .vt-video-contact p a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  line-height: 1;
}

/* END VIDEO CONTACT STYLES */

/* BEGIN HIDE BIO CONTACT INFO */

.vt-bio-email,
.vt-bio-phone {
  display: none;
}
