/* add underline to all links on hover, for SiteImprove 12-13-21 */
a:hover {
    text-decoration: underline !important;
}
/* increase caption contrast to pass AA GD 03-23-22 */
figcaption {
    color:#757575;
}
/* allow button text to wrap for SiteImprove GD 03-24-22 */
.btn {
    white-space: normal;
}
/* remove overflow hidden for SiteImprove GD 04-12-22 */
/* overflow auto causes 2nd scroll bar for hero. reverting to visible GD 08-01-23 */
/* visible breaks home page hero. changing back to auto GD 09-05-23 */
.hero {
    overflow: auto;
}
/* add hover zoom to 3-across content type GD 05-11-22 */
.feature__media {
    overflow: hidden;
    margin: 0 auto;
    font-size: 0;
}
.feature__media__image {
    transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
}
.feature__block--active .feature__media__image,.feature__media__image:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
/* make 3-across content type text smaller GD 05-11-22 */
.feature__block__student--name {
    font-size: 1.05rem;
}
.feature__block__student--name {
    font-family: "Montserrat",sans-serif;
    margin: 1.1rem 0 0.5rem;
}
div.feature__block__student--name {
    color: #433eab;
}
/* Make links blue on hover for 3-Across Tiles with Text Below GD 07-01-22 */
a.text-below:hover {
     color: #433eab;
}
/* Declare line height for accessibility GD 07-5-22 */
.x-large {
    line-height: 1.6;
}
.large {
    line-height: 1.6;
}
/* remove rem from line height for accessibility GD 03-08-23 */
p {
    line-height: 1.5;
}
/* Increase contrast for accessibility GD 10-18-23 */
.hero__tabs p {
    color: #595959;
}
/* Increase contrast for accessibility GD 10-19-23 */
.header--collapsed .header__top {
    background-color: #f5f4f4 !important;
}
@media (min-width: 64em) {
  .header--collapsed .header__collection__link {
    background-color: #f5f4f4;
  }
}
figcaption {
    color: #575757;
}
/* Increase line height on pull quote type GD 10-24-23 */
blockquote p {
  line-height: 1.5 !important;
}
/* Increase contrast on library ticker GD 10-25-23 */
.hero__info {
    background-color: #9D2F3E;
}
/* Darken alert for contrast GD 10-26-23 */
.alert-danger {
    color: #79302F;
}
/* Style new Threads and X social icons GD 11-03-23 */
.svgstore--x {
  padding-bottom: 92%;
}
.svgstore--threads {
  padding-bottom: 100%;
}
