/* Defined spacing, styles
Padding around elements = 15px
rust = #cc5831
Paragraph text reaches appx. 8px underneath the start of the box model
*/

/* For one of the magazines (14.1?) */
@font-face {
  font-family: "Avenir 85 Heavy";
  src: url("https://www.evms.edu/uploads/magazine/14-1/fonts/Avenir%20LT%20Std/Web%20Fonts/Avenir%20LT%20Std%2055%20Roman%2BHeavy/AvenirLTStd-Heavy.woff") format("woff");
}


body {
  font-family: var(--primary-font-family);
  font-size: var(--med-font-size);
}


#btn-menu:active,
#btn-menu:focus,
#btn-menu:hover,
.navbar-pulse a:active *,
.navbar-pulse a:focus *,
.navbar-pulse a:hover * {
  color: var(--secondary-light);
}

a,
a * {
  color: var(--primary-accent);
  font-weight: 600;
}

a:active,
a:focus,
a:hover,
a:active *,
a:focus *,
a:hover * {
  color: var(--primary-neutral-dark);
  text-decoration: underline;
}

article {
  font-size: 1.25em;
  /* Formerly 1.5em */
}

aside,
footer {
  font-size: .75em;
}

header {
  padding-top: 0;
}

img {
  margin-bottom: 15px;
}

iframe {
  border: none;
}

h2 {
  font-size: 2em;
}

p {
  margin-bottom: 15px;
}

ul {
  list-style-type: square;
}

/* Global nav */
.navbar-brand img {
  display: inline-block;
  height: 40px;
  margin-top: 0.2em;
  width: 40px;
}

/* Same class is used for the date, this is for the logo and site name */
.navbar-brand:first-of-type {
  margin-top: 0;
  padding: 0;
  width: fit-content;
}

/* Added 11.14.2024 for accessibility purposes */
.navbar-header > h1 {
  margin: 0;
  padding: 0;
}

/* Even out spacing around date */
.navbar-brand:nth-child(2) {
  padding-left: 1.5em;
  padding-top: 0.8em;
}

#btn-menu,
.btn-search {
  background: transparent;
  border: none;
}

#btn--search {
  padding-top: 1em;
}

#menu {
  background: var(--primary-dark);
  left: -205px;
  min-width: 250px;
  position: absolute;
  width: 100%;
  top: 51px;
  z-index: 1;
}

#menu a {
  background: transparent;
  display: inline-block;
  font-size: .8em;
  width: 100%;
}

#menu ul {
  list-style-type: none;
  padding: 0;
}

#menu li {
  background: transparent;
  border-bottom: thin solid var(--secondary-accent);
  padding: 5px 15px;
  width: 100%;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

#menu li:last-of-type {
  border-bottom: none;
}

#menu li:active,
#menu li:focus,
#menu li:hover {
  background: var(--primary-color-tint);
}

.global-header {
  color: var(--primary-neutral-light);
  display: flex;
  flex-wrap: wrap;
}

.btn {
  white-space: normal;
}

.btn-search:active,
.btn-search:focus,
.btn-search:hover {
  color: var(--secondary-light);
}

/* The video icon overlay on archive/feature videos */
.icon-bar {
  background-color: var(--primary-color);
  color: var(--primary-neutral-light);
  font-weight: 700;
  height: 27px;
  width: auto;
  z-index: 1;
}

.icon-bar-container {
  position: relative;
}

.navbar-pulse {
  background-color: var(--primary-color);
  border-radius: 0;
  color: var(--primary-neutral-light);
  width: 100%;
}

.navbar-pulse a,
.pulse1,
.pulse2 {
  background: transparent;
  border-radius: 0;
  color: var(--primary-neutral-light);
  font-size: 2.5rem;
}

.pulse2 {
  text-transform: uppercase;
}



.today,
.pulse1 {
  font-weight: 700;
}

.pulse2,
.weather {
  font-weight: 600;
}

.today {
  margin-right: 15px;
  bottom: 70%;
}

.today,
.weather {
  position: relative;
}

.weather {
  align-items: center;
  bottom: 50%;
  display: flex;
  font-size: 1.8em;
  font-stretch: ultra-condensed;
}

.weather-icon {
  padding-top: 5%;
}

.today-info {
  display: flex;
  align-items: center;
}

.pulse-logo,
.today,
.weather {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

/* end global nav */
/* Archive MixItUp plugin */
#mixitup-filters input[type="checkbox"] {
  margin-right: 10px;
}

.mixitup-container {
  padding: 2% 2% 0;
  text-align: left;
}

.mixitup-container:after {
  content: '';
  display: inline-block;
  width: 100%;
}

.mixitup-container .mix {
  display: none;
  width: 32%;
  margin-bottom: 2%;
  padding: 2%;
  vertical-align: top;
}

/**
 * Fail message styles
 */
.mixitup-container .fail-message {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 150ms;
  -moz-transition: 150ms;
  transition: 150ms;
}

.mixitup-container .fail-message:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.mixitup-container .fail-message span {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--lg-font-size);
  font-weight: 700;
}

.mixitup-container.fail .fail-message {
  opacity: 1;
  pointer-events: auto;
}

.mixitup-depts,
.mixitup-filter,
.mixitup-tags,
.mixitup-topics {
  display: none;
}

/* Flex box progressive enhancements: */
.mixitup-container {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-content: flex-start;
  -webkit-align-content: flex-start;
}

/* end archive page */
.btn-accordion,
.btn-filter-reset {
  background: none;
  border: none;
}

.btn-filter-reset {
  border: 1px solid var(--primary-accent);
  border-radius: 5px;
  float: right;
  width: 50%;
}

.btn-filter-reset:active,
.btn-filter-reset:focus,
.btn-filter-reset:hover {
  background: var(--primary-accent);
}

.icon-accordion-down,
.icon-accordion-up {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  font-size: 1px;
  height: 0;
  margin: 0 10px 0 0;
  padding: 0;
  width: 0;
}

.icon-accordion-down {
  border-top: 8px solid var(--primary-accent);
}

.icon-accordion.icon-accordion-up {
  border-bottom: 8px solid var(--primary-accent);
  position: relative;
  top: -10px;
}

.btn-default {
  background-color: var(--primary-neutral-light);
  border-color: var(--primary-neutral-dark);
  border-radius: 0;
  color: var(--primary-neutral-dark);
  text-transform: uppercase;
}

.btn-default:hover,
.btn-default:focus{
  background-color: var(--primary-neutral-dark);
  border-color: var(--primary-neutral-dark);
  color: var(--primary-neutral-light);
  text-decoration: underline;
}

.has-icon {
  margin-bottom: 0;
}

.has-video,
.has-image,
.has-audio {
  margin-left: -0.3em;
}

a .has-video:hover,
a .has-image:hover,
a .has-audio:hover {
  color: var(--primary-neutral-light);
  opacity: .7;
}

.has-video,
.has-image,
.has-audio {
  color: var(--primary-neutral-light);
  font-family: 'Font Awesome 6 Free';
  font-size: 1.3em;
  font-weight: normal;
  padding: .1em .3em .2em .3em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.has-video:first-of-type,
.has-image:first-of-type,
.has-audio:first-of-type {
  margin-left: 0;
}

.feature-icon:before {
  font-size: 1.5em;
  height: 1.5em;
  bottom: 1.5em;
}

.has-audio:before {
  content: "\f026";
  
  color: var(--primary-neutral-light);
  font-family: 'Font Awesome 6 Free';
  font-size: 1.3em;
  font-weight: normal;
}

.has-image:before {
  content: "\f030";
  
  color: var(--primary-neutral-light);
  font-family: 'Font Awesome 6 Free';
  font-size: 1.3em;
  font-weight: normal;
}

.has-video:before {
  content: url(https://pxl-evmsedu-v6.terminalfour.net/prod01/channel_41/media/evms_public/evms_branding/images/icons/misc/svgs/playButton.svg);
  
  color: var(--primary-neutral-light);
  font-family: var(--primary-font-family);
  font-size: 1.33em;
  font-weight: normal;
  width: 35px;
  height: 35px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color: var(--primary-color);
  border: 3px solid var(--primary-color);
}

.landing-section-title {
  margin: 0 0 15px 0;
  padding: 10px 15px 10px 0;
  color: var(--primary-accent);
  font-family: var(--heading-font-family);
  font-size: 1.75em; /* Formerly 2em */
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary-neutral-dark);
}

.article-list,
.top-articles {
  list-style-type: none;
  padding-left: 0;
}

.article-list li,
.top-articles li {
  padding-bottom: 15px;
}

.article-title {
  color: var(--primary-dark);
  font-family: var(--heading-font-family);
  /* Formerly "Century Schoolbook BT", serif */
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
  padding-bottom: 10px;
}

a.article-title:active,
a.article-title:focus,
a.article-title:hover {
  color: var(--primary-accent);
}

.slide-title {
  position: relative;
  top: 5px;
}

.featured-video-vertical {
  z-index: -1;
}

.featured-video-container {
  padding: 0;
}

.editors-slider-container,
.more-articles-container,
.top-articles-container {
  background-color: var(--secondary-neutral-light-gray);
  padding: 0;
}

.editors-slider-container,
.more-articles-container {
  padding: 15px 0;
  margin-top: -15px;
}

.top-articles {
  text-align: left;
}

.top-articles .article-title {
  font-size: 1.5em;
}

.top-articles li {
  padding-right: 15px;
  padding-left: 15px;
}

.top-articles li:first-of-type .article-title {
  font-size: 1.6em;
}




.featured-photo {
  margin-top: -20px;
  width: 100%;
}

.featured-photo-caption {
  font-size: 1.1em;
  font-style: italic;
}

.featured-photo-caption a {
  color: var(--primary-neutral-light);
  text-decoration: underline;
}

.featured-photo-caption a:active,
.featured-photo-caption a:focus,
.featured-photo-caption a:hover {
  text-decoration: none;
}

.featured-photo-toolbar {
  display: none;
}

.house-ad {
  margin-top: 15px;
}

.btn-gallery,
.btn-gallery:active,
.btn-gallery:focus,
.btn-gallery:hover {
  color: var(--primary-neutral-light);
}

.lightbox-gallery-video .btn-gallery {
  color: var(--primary-neutral-dark);
  float: right;
}

.lightbox {
  display: none;
}

/* Individual story page titles/h1's */
#label-article {
  font-family: var(--heading-font-family);
}

.featured-video-container {
  border-top: 5px solid var(--primary-neutral-dark);
}

.featured-video-thumb-container {
  padding: 0;
}

.feature-video-caption {
  padding-left: 30px;
  padding-top: 30px;
}

.featured-video-title {
  font-size: 1.9em;
}

.article-img {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.thumb {
  width: 100%;
  max-width: 100%;
  padding-bottom: 10px;
}

.related-headline {
  font-size: 1.5em;
}

.author {
  font-size: .7em;
}

.story-date {
  font-size: var(--sm-font-size);
}

.article-title h3 {
  color: var(--primary-dark);
  font-size: 1.5em; /* Formerly 1em */
  font-weight: 600;
  line-height: 1.2em;
  margin: 0;
  padding-bottom: 0;
}


.sidebar-articles {
  display: flex;
  font-size: .6em;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sidebar-articles article {
  position: relative;
}

.sidebar-articles .icon-bar {
  position: static;
}

.sidebar-articles .article-title {
  font-size: 1.2em;
  line-height: 1em;
}

.sidebar-articles>* {
  margin-bottom: 30px;
  width: 47%;
}

.sidebar-articles>*:last-of-type {
  margin-right: 0;
}

.submit-story {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.submit-story>* {
  margin-bottom: 20px;
}

.story-editors-picks .article-title {
  font-size: 1.5em; /* Formerly 1.1em */
  line-height: 1; /* Formerly 0 */
}

.featured-profile {
  margin-top: 10px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid var(--secondary-neutral-light-gray);
  padding-top: 30px;
}

#footer-bg {
  background-color: var(--primary-color);
}

.site-footer {
  background-color: var(--primary-color);
  /* padding-top: 15px; */
  font-size: 1.1em !important;
  font-stretch: semi-condensed;
  font-weight: 600;
  margin: 1.5em 0 !important;
  padding: 1em 0;
}

.site-footer * {
  color: var(--primary-neutral-light);
}

.site-footer a:active,
.site-footer a:focus,
.site-footer a:hover,
.site-footer a:active p,
.site-footer a:focus p,
.site-footer a:hover p {
  color: var(--secondary-light);
  text-decoration: underline;
}

.footer__logo {
  height: 184px;
  width: 350px;
  margin: -3.75em 0 1em;
}

.footer__col--info address {
  margin-top: -2em;
}


.site-footer h2 {
  font-weight: 700;
  background-color: transparent;
  padding: 0 10px 10px 10px;
  margin: 0 0 0 -10px;
  text-transform: none;
  border-bottom: none;
  font-size: 1.7em;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
}

.site-footer-links li {
  display: inline;
  padding-bottom: 1em;
}

.site-footer-links li:last-of-type {
  padding-right: 0;
}

.footer__col--magazine img {
  height: auto;
  width: 200px;
}

#social span {
  display: inline-block;
  margin: 0 -5px;
  padding: 0.4em;
}

/* #679-689 added after social media icons were switched out for Font Awesome social icons - SM 09.25.2023 */
#social ul li {
  display: inline;
  list-style: outside none none;
  padding: 0;
}

#social li a {
  font-size: 24px;
  text-decoration: none;
}

.list-inline li a span:focus,
.list-inline li a span:hover {
  color: var(--secondary-light);
  text-decoration: none;
}

/*.facebook {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/facebook-white-32px.svg) no-repeat scroll 0 0;
}

.facebook:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/facebook-32px.svg) no-repeat scroll 0 0;
}

.instagram {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/instagram-white-32px.svg) no-repeat scroll 0 0;
}

.instagram:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/instagram-32px.svg) no-repeat scroll 0 0;
}

.twitter {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/twitter-white-32px.svg) no-repeat scroll 0 0;
}

.twitter:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/twitter-32px.svg) no-repeat scroll 0 0;
}

.flickr {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/flickr-white-32px.svg) no-repeat scroll 0 0;
}

.flickr:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/flickr-32px.svg) no-repeat scroll 0 0;
}

.youtube {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/youtube-white-32px.svg) no-repeat scroll 0 0;
}

.youtube:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/youtube-32px.svg) no-repeat scroll 0 0;
}

.vimeo {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/vimeo-white-32px.svg) no-repeat scroll 0 0;
}

.vimeo:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/vimeo-32px.svg) no-repeat scroll 0 0;
}

.linkedin {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/linkedin-white-32px.svg) no-repeat scroll 0 0;
}

.linkedin:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/linkedin-32px.svg) no-repeat scroll 0 0;
}

.googleplus {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/google_-white-32px.svg) no-repeat scroll 0 0;
}

.googleplus:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/google_-32px.svg) no-repeat scroll 0 0;
}

.pinterest {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/pinterest-white-32px.svg) no-repeat scroll 0 0;
}

.pinterest:hover {
    background: rgba(0, 0, 0, 0) url(/media/evms_public/content/style_assets/pulse/images/pinterest-32px.svg) no-repeat scroll 0 0;
} */

address {
  font-style: normal;
  line-height: 1.42857;
  margin-bottom: 10px;
}

a[href^="tel:"]:before {
  display: inline-block;
}

a[href^="mailto:"]:before {
  display: inline-block;
}

/* Slick slider custom CSS */
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: .75;
}

.slick-next,
.slick-prev {
  position: absolute;
  top: 30%;
  font-size: 1.5em;
  height: 1.5em;
  width: 1.5em;
  color: transparent;
}

.slick-next:before,
.slick-prev:before {
  color: var(--primary-dark);
  font-weight: bold;
  font-family: 'Font Awesome 6 Free'; /* Formerly Glyphicons Halflings */
  opacity: 1;
  font-size: 1.5em;
}

.slick-prev:before {
  content: "\f053";
}

.slick-next:before {
  content: "\f054";
}

.slider div p {
  margin: 0;
}

.remove-slide {
  display: none;
}

/* end Slick slider custom CSS */
.editors-picks {
  margin-bottom: inherit;
}

.editors-slider-container,
.more-articles-slide {
  margin: inherit 0;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.editors-pick-slide,
.more-articles-slide {
  padding: 0 7px;
}

.mfp-title {
  color: var(--primary-neutral-light);
  position: absolute;
}

.editor-pick::before {
  content: "EDITORS\' PICK";
}

.my-story-box::before {
  content: "MY STORY";
}

.evms-magazine-story::before {
  content: "MAGAZINE";
}

/* So the EVMS Magazine tag doesn't appear over photos on the Pulse Archives page twice */
/* This goes on both the tags on images on the Pulse home page and the Pulse archives page */
.evms-magazine::before {
  background-color: var(--primary-accent);
  color: var(--primary-neutral-light);
  content: "MAGAZINE";
  font-family: var(--primary-font-family);
  font-size: 0.65em;
  font-stretch: semi-condensed;
  font-weight: 700;
  margin-top: 0;
  min-width: 80px;
  -moz-osx-font-smoothing: grayscale;
  padding: 0.01em 0.4em;
  position: absolute;
  text-align: center;
}

.pole {
  color: var(--primary-accent);
}

.evms-magazine-number::before {
  content: "ISSUE";
}

.editor-pick-type,
.my-story-type,
.evms-magazine-type {
  margin-top: -6px;
  position: absolute;
}

.editor-pick-type+.my-story-type,
.evms-magazine-type+.my-story-type {
  margin-top: 13px;
}


.editor-pick,
.my-story-box {
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--primary-color);
  color: var(--primary-neutral-light);
  font-family: var(--primary-font-family);
  font-size: 0.6em;
  font-stretch: semi-condensed;
  font-weight: 700;
  padding: 0 0.1em;
}

.my-story-box {
  background-color: var(--primary-accent-shade);
}

.editor-pick-story,
.my-story-story {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1em;
  padding: 0 5px;
}

.my-story-story {
  border: 1px solid var(--primary-accent-shade);
  color: var(--primary-accent-shade);
}


.evms-magazine-number {
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  color: var(--primary-accent);
  font-family: var(--primary-font-family);
  font-size: 1em;
  font-weight: 600;
  padding: 0 0.1em;
}

.evms-magazine-story {
  background: transparent;
  border: 0;
  color: var(--primary-accent);
  font-size: 1em;
  padding: 0;
}

/* For blockquotes, October 2021 */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px 14%;
  font-size: 1em;
  position: relative;
  font-weight: 600;
  text-align: left;
  border-left: var(--primary-accent) 5px solid !important;
}

blockquote::after {
  content: "";
  height: calc(100% - 55px);
  position: absolute;
  top: 21px;
  left: -15px;
}

blockquote .citation {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
}

/* For basic stories, October 2021 */
.hero {
  margin-bottom: 2em;
}

.caption {
  font-size: 0.66em;
  line-height: 1.5em;
  margin: -1em auto 2em auto;
}

/* Pulled from page layouts, 08/22/2024 */
.video-caption {
   font-size: 0.75em;
   font-style: italic;
   color: var(--secondary-neutral-dark-gray);
}
        
/* Added 02.24.2021 after weather was removed */
#today { 
  margin-top: 0.75em; 
}




/* smaller than xs */
@media (max-width: 342px) {
  #menu {
    left: 0;
  }
}


/* For 14.1 postscripts in basic stories - November 2021 */
.magFeature__article--ps {
  margin-top: 2em;
}

.issue__postscript--int,
.evmsMag__subscribe {
  font-family: var(--primary-font-family);
  width: 100%;
}

.issue__postscript--int {
  margin: 1.5em auto;
}

hr.issue__postscript--hr {
  margin: 0 auto;
  width: 100%;
}

.issue__postscript--int p {
  font-size: inherit;
  line-height: 1.5em;
}

.evmsMag__subscribe--ps {
  border-left: 4px solid var(--primary-accent);
}

.container--subscribe {
  column-count: 2;
  display: grid;
  grid-auto-columns: 50% 50%;
  grid-auto-flow: column;
  grid-column-gap: 2.5em;
  margin: 0.5em auto;
}


.container--subscribe p {
  color: var(--primary-accent);
  font-family: "Avenir 85 Heavy", sans-serif;
  font-style: oblique;
  font-weight: bold;
  line-height: 1.33em;
  padding: 0.5em 0 0 0.5em;
}

/* Button with dark blue outline and text, transparent/white background */
.btn--outlineDkBlue {
  background-color: transparent;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  font-size: var(--med-font-size);
  font-weight: 400;
  text-transform: uppercase;
}

.btn--outlineDkBlue:focus,
.btn--outlineDkBlue:hover {
  background-color: var(--primary-dark);
  color: var(--primary-neutral-light);
  text-decoration: underline;
}

.container--subscribe .btn--outlineDkBlue {
  font-family: "Avenir 85 Heavy", sans-serif;
  height: 60%;
  margin-top: 1em;
  padding-top: 1em;
  text-align: center;
  width: 60%;
}


@media screen and (min-width: 320px) and (max-width: 1080px) {
  .container--subscribe {
    column-count: 1;
    display: grid;
    grid-auto-columns: unset;
    grid-auto-flow: row;
    grid-column-gap: unset;
    margin: -0.5em auto 1em;
  }

  .container--subscribe p {
    padding: 0.5em 0 0 0.5em;
  }

  .container--subscribe .btn--outlineDkBlue {
    font-family: "Avenir 85 Heavy", sans-serif;
    margin-left: 1em;
    margin-top: 0;
    padding: 0.5em 0 1.75em;
    text-align: center;
    width: 85%;
  }

}


/* November 2021 - EVMS magazine tags for stories that appear on the Pulse Home Page */
.top-articles li {
  position: relative;
}

.top-articles li span.evms-magazine {
  display: inline-block;
  font-size: 0.97em;
  left: 48px;
  position: absolute;
  top: 0;
  width: 59%;
  z-index: 9;
}

@media screen and (min-width: 320px) and (max-width: 1079px) {
  .top-articles li span.evms-magazine {
    left: 15px;
    top: unset;
    width: unset;
  }
}

@media screen and (width: 1080px) {
  .top-articles li span.evms-magazine {
    left: 0;
    top: 0;
    width: 59%;
  }
}

/* xs */

@media only screen and (max-width: 600px) {
  article p img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* Added 08.28.2024 to make room for the new logo on mobile */
  #footer-bg .container-fluid,
  #footer-bg .container {
    padding: 0;
  }
}


@media (max-width:767px) {

  .slick-next,
  .slick-prev {
    top: 30%;
  }
}

/* sm */
@media (min-width: 768px) {
  header {
    padding-top: 2%;
  }

  .landing {
    overflow: hidden;
  }

  .landing-section-title-vertical {
    border-bottom: none;
    padding-right: 0;
    text-align: right;
    -ms-transform: rotate(-90deg) translate(-54%, -1000%);
    -webkit-transform: rotate(-90deg) translate(-54%, -1000%);
    transform: rotate(-90deg) translate(-54%, -1000%);
    width: auto;
    z-index: 1;
  }

  .featured-photo-container {
    min-height: 100%;
  }

  .top-articles {
    text-align: right;
  }

  .top-articles li:first-of-type .article-title {
    font-size: 2.3em;
  }

  .editors-picks {
    margin-top: 42px;
  }

  .icon-bar {
    position: absolute;
    top: 110px;
  }

  .mixitup-container .icon-bar {
    top: -2.3em;
  }

  .slick-next,
  .slick-prev {
    position: absolute;
    top: 25%;
  }
}

/* from sm to md */
@media (min-width:768px) and (max-width:991px) {
  .editors-articles li {
    flex-basis: 30%;
  }
}

@media (min-width: 768px) {
  .form-inline .form-group {
    margin-top: 8px;
  }

  .form-control.input-search {
    transition: all 500ms;
    width: 100%;
  }

  .form-control.input-search:focus {
    transition: all 500ms;
    margin-left: -80%;
    width: 180%;
  }

  .sidebar-articles .icon-bar {
    position: absolute;
    top: 199px;
  }
}

/* md */
@media (min-width: 992px) {
  .featured-photo-caption {
    padding: 15px;
  }

  /* I'm not sure this is in use anymore, so I haven't changed the colors - SM 08.21.2024 */
  .featured-photo-sidebar {
    background-color: rgba(76, 77, 88, .9);
    background: red;
    background: -webkit-linear-gradient(left, rgba(76, 77, 88, 0), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8));
    background: -o-linear-gradient(right, rgba(76, 77, 88, 0), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8));
    background: -moz-linear-gradient(right, rgba(76, 77, 88, 0), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8));
    background: linear-gradient(to right, rgba(76, 77, 88, 0), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8), rgba(76, 77, 88, .8));
    bottom: 0;
    color: var(--primary-neutral-light);
    padding-left: 5%;
    position: absolute;
    right: 15px;
    width: 20%;
  }

  .featured-photo-toolbar {
    display: block;
    font-size: 1.6em;
    padding-top: 5px;
  }

  .featured-photo-toolbar button,
  .featured-photo-toolbar [role=button] {
    border: none;
    background: transparent;
    display: inline-block;
  }

  .featured-photo-toolbar a:active,
  .featured-photo-toolbar a:focus,
  .featured-photo-toolbar a:hover {
    color: var(--primary-neutral-light);
  }

  .article-img:nth-of-type(odd) {
    float: right;
    margin: 8px 0 15px 15px;
  }

  .article-img:nth-of-type(even) {
    float: left;
    margin: 8px 15px 15px 0;
  }

  .landing {
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .landing-section-title-vertical {
    -ms-transform: rotate(-90deg) translate(-53%, -1210%);
    -webkit-transform: rotate(-90deg) translate(-53%, -1210%);
    transform: rotate(-90deg) translate(-53%, -1210%);
  }

  /*.mixitup-container .icon-bar {
		top: 120px;
	}*/
  .top-articles {
    background-color: var(--primary-neutral-light);
    border-left: 1px solid var(--primary-neutral-dark);
    margin-bottom: 0;
    padding-left: 15px;
  }

  .top-articles li {
    background-color: var(--secondary-neutral-light-gray);
    min-height: 130px;
    overflow: hidden;
  }

  .top-articles-thumb {
    float: right;
    height: 140px;
    margin-left: 15px;
    width: 210px;
  }

  .top-articles li:first-of-type {
    height: auto;
    padding-top: 15px;
  }

  .top-articles li:first-of-type .top-articles-thumb {
    float: none;
    margin: 0 0 15px 0;
    padding: 0;
    height: auto;
    width: 100%;
    width: calc(100% + 15px);
  }

  .top-articles li:last-of-type {
    padding-right: 218.5px;
    padding-right: calc(33% + 15px);
    min-height: auto;
  }

  .featured-video-thumb-container {
    border-left: 1px solid var(--primary-neutral-dark);
    padding-left: 15px;
  }

  .sidebar-articles {
    flex-wrap: no-wrap;
  }

  .sidebar-articles>* {
    width: 100%;
  }

  .sidebar-articles .icon-bar {
    top: 86.3px;
  }

  .featured-video-caption p {
    width: 90%;
  }
}

/* lg */
@media (min-width: 1200px) {
  .editors-articles li {
    flex-basis: 14%;
  }

  .icon-bar {
    top: 107px;
  }

  .sidebar-articles .icon-bar {
    top: 113px;
  }
}

@media print {

  /* Boilerplate */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid var(--secondary-neutral-dark-gray);
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  /* end boilerplate */

  /* Custom */
  *,
  article {
    font-size: 100%;
  }

  a,
  a:visited,
  a[href]:after,
  abbr[title]:after {
    font-size: 80%;
  }

  h1,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  iframe {
    display: none;
  }

  [class*="pull"],
  [class*="push"] {
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }

  /* Hide unnecessary elements */
  .landing.featured-video-thumb-container,
  .landing.editors-picks,
  .icon-bar-container,
  .mix div,
  .video,
  .site-footer-links,
  #social,
  .no-print {
    display: none;
  }

  /* Wrap class around More News to hide */

  /* Home */
  body:before {
    content: "EVMS PULSE (https://evms.edu/pulse)";
    font-size: 22px;
    text-decoration: underline;
  }

  .landing.top-articles-container {
    float: none;
    width: 100%;
    display: block;
  }

  .top-articles li {
    text-align: left;
    page-break-inside: avoid;
    width: 100%;
  }

  .feature-video-caption,
  .house-ad,
  .site-footer {
    page-break-inside: avoid;
  }

  /* In the News */
  .feedItem {
    margin: 50px 0;
    page-break-inside: avoid;
  }

  /* Archive */
  /* Wrap class around Filter to hide */
  .mixitup-container .mix {
    width: 50%;
  }

  .mixitup-container a[href]:after {
    content: "";
  }

  .mix p:not(:empty):before {
    content: "Topics: ";
  }

  /* Article */
  .hero img {
    display: block !important;
  }
}










