/* -------------------------------------------------------------------------- */
/* Main Nav Hover Effects */
/* -------------------------------------------------------------------------- */
.main-navigation li:not(.highlight-grey) a:hover::after {
    content: ' ';
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.25rem;
    
    z-index: -1;
}

nav.toggled.main-navigation .menu-primary-container .menu.nav-menu a:hover::after {
    content: none;
    width: 0;
    height: 0;
}

nav.toggled.main-navigation .menu-primary-container .menu.nav-menu li:not(.highlight-grey) a:hover {
    background-color: #333;
}

.main-navigation li.highlight-grey:hover a {
    background-color: #eee;
}

/* -------------------------------------------------------------------------- */
/* Home Page: Core Link Hover Effects */
/* -------------------------------------------------------------------------- */

.clinical-care-section.wpb_column.vc_column_container.vc_col-sm-4:hover::before {
    background-color: rgba(202, 128, 54, 0.75);
    transition: background-color .2s ease-in-out;
}

.research-section.wpb_column.vc_column_container.vc_col-sm-4:hover::before {
    background-color: rgba(33, 111, 153, 0.75);
    transition: background-color .2s ease-in-out;
}

.outreach-section.wpb_column.vc_column_container.vc_col-sm-4:hover::before {
    background-color: rgba(129, 170, 57, 0.75);
    transition: background-color .2s ease-in-out;
}

/* -------------------------------------------------------------------------- */
/* Home Page: Other Link Hover Effects */
/* -------------------------------------------------------------------------- */

.btn-see-more:hover {
    background-color: #eee;
}

.link-download a::before {
    content: ' ';
    position: absolute;
    width: 2em;
    height: 2em;
    border-radius: 1em;
    display: block;
    right: -0.3em;
    top: -0.5em;
    background-color: #ccc;
    
    transform: scale(0);
    
    z-index: -1;
}

.link-download a:hover::before {
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}

.link-filled a::before {
    background: none;
    width: 0;
    height: 0;
    display: none;
}

/* -------------------------------------------------------------------------- */
/* change the look of h2 for titles on Advisory Board profiles */
/* -------------------------------------------------------------------------- */

.department-advisory-board .entry-content h2 {
    line-height: 1.2;
    font-weight: 200;
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/* Leadership profiles */
/* -------------------------------------------------------------------------- */

.single.single-leadership .entry-content a {
    font-weight: 400;
}

.single.single-leadership .entry-content a:hover {
    text-decoration: underline;
}

.single.single-leadership .entry-content {
    margin-bottom: 2rem;
}

/* -------------------------------------------------------------------------- */
/* Core Pages / Leadership Pages: sidebar link hover effects */
/* -------------------------------------------------------------------------- */

.fixed-banner.core:hover {
    opacity: 0.85;
}

.page-template-team .fixed-banner:hover div {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* Core Pages Partner link hover */
/* -------------------------------------------------------------------------- */

.page-template-core .partners .box:hover {
    box-shadow: 3px 3px 7px 0px #aaa;
    box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s ease-out;
}