.alert__text {
    font-size: 1rem;
}

.alert__text p {
    margin: 0;
}

.alert__text a {
    color: #ffffff;
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
    transition: border 300ms ease;
    border-width: 1px;
}
/* Start of Rules for Single Slide; this is a version of the Quote Slider used on the homepage, but for allowing a single slide and removing the JavaScript code for the Flickity slider */
.single-slider {
    padding-top: 80px;
    padding-bottom: 80px;
}
.single-slide__item {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 80rem;
}
.single-slide__item::before, .single-slide__item::after {
    content: '';
    display: table;
}
.single-slide__item::after {
    clear: both;
}
.single-slide__image__container {
    width: 100%;
    padding-right: 1rem;
}
.single-slide__image {
    width: 70%;
    margin: 0 auto;
    /*transform: translateX(25%);*/
}
.single-slide__content__container {
    padding-left: 1rem;
    padding-right: 1rem;        
    margin-top: 2rem;
}
.single-slide__content {
    color: #202020;
    width: 100%;
    left: 0 !important;        
    transition: opacity 800ms ease-in-out;        
}
.single-slide__text {
    position: relative;
    font-family: "miller-text", serif;
    padding-left: 1rem;
    display: block;
    font-size: 24px;
    line-height: 1.466;
    max-width: 600px;
}
.single-slide__text::before {
    position: absolute;
    left: 0;
}
.single-slide__author {
    font-weight: 700;
    font-size: 1.3125rem;
    letter-spacing: 0;
    line-height: 1.380;
    margin-top: 2rem;
    padding-left: 1rem;
}
.single-slide__title {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6875;
    padding-left: 1rem;
}
.single-slide__link__group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
    padding-left: 0;
    list-style: none;
    padding-left: 1rem;
}
.single-slide__link__group a {
    margin-top: 1rem;
    margin-right: 1rem;
}
.single-slide__heading {
    padding-left: 1rem;
    font-size: calc(24px + 4 * (100vw - 320px) / 1120);
    font-weight: 700;
    margin-bottom:1.3rem;
}
@media (min-width: 64em) {
    .single-slider {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}
@media (min-width: 48em) {
    .single-slider {
        white-space: nowrap;
        word-wrap: normal;
    }
}    
@media (max-width: 1300px) {
    .single-slide__item {
        width: 90%;            
    }    
}
@media (min-width: 48em) {
    .single-slide__item {
        display: -ms-flexbox;
        display: flex;
        white-space: normal;
        vertical-align: bottom;
        word-wrap: break-word;
    }
}
@media (min-width: 48em) {
    .single-slide__image__container {
        width: 40%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        float: left;
        padding-right: 2rem;
    }
}
@media (min-width: 48em) {
    .single-slide__image {
        width: 80%;
    }
}
@media (min-width: 48em) {
    .single-slide__content__container {
        width: 60%;
        -ms-flex-item-align: end;            
        padding-right: 5rem;
        margin-top: 0;
    }
}
@media screen and (min-width: 320px) {
    .single-slide__text {
        font-size: calc(23px + 4 * (100vw - 320px) / 1120);
    }
}
@media screen and (min-width: 1440px) {
    .single-slide__text {
        font-size: 26px;
    }
}
/* End of Rules for Single Slide */

/* Start of Rules for Card Grid Basic */
.card__basic {
	background: white;
	margin-bottom: 2em;	
	border: 1px solid black;
}

.card__basic a {
	color: black;
	text-decoration: none;
}

.card__basic a:hover {
	box-shadow: 3px 3px 8px hsl(0, 0%, 80%);
}

.card__basic-content {
	padding: 1.4em;
}

.card__basic-content h2 {
	margin-top: 0;
	margin-bottom: .5em;
	font-weight: bold;
	font-size: 18px;
}

.card__basic-content p {
	font-size: 80%;
}

/* Flexbox stuff */
.cards__basic {
    display: flex;
    flex-wrap: wrap;
 }

.card__basic {
    /*flex: 1 0 500px;*/
    box-sizing: border-box;
    margin: 1rem .25em;
    width: calc(100% - 1em);
}

@media screen and (min-width: 40em) {
    .card__basic {
       max-width: calc(50% -  1em);
       width: calc(50% -  1em);
    }
}

@media screen and (min-width: 60em) {
    .card__basic {
        max-width: calc(33% - 1em);
	    width: calc(33% - 1em);
    }
}

.cards__basic-centered {
    margin: 0 auto;
    padding: 0 1em;
}

@media screen and (min-width: 52em) {
    .centered {
        max-width: 52em;
    }
}

.minimodal__nav {
    display:none;
}
/* End of Rules for Card Grid Basic */

/* Start of Rules for Card Grid Basic 50% */
@media screen and (min-width: 60em) {
    .card__basic-50 {
        max-width: calc(50% - 1.5rem);
        width: calc(50% - 1.5rem);
    }
}

.card__basic-50 {    
    margin: 0 0 2rem 0;
    width: 100%;
}

.cards__basic-50 {    
    justify-content: space-between;
}

.card__basic-50 .card__basic-content {
    font-weight: 400;
}

.cards__basic-centered-50 {
    padding: initial;
}
/* End of Rules for Card Grid Basic 50% */

.callout-block {
    margin: 3rem 0;
    padding: 2rem 4rem;
    background-color: #7DD1E1;
    text-align: center;
}

@media (min-width: 48em) {
    .callout-block {
        padding: 4rem 6rem;
    }
}

.callout-text {
    font-family: "miller-text", serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #202020;
    letter-spacing: 0.26px;
    line-height: 1.388;
}

.callout-source {
    display: block;
    margin-top: 2rem;
    font-weight: 700;
    font-style: normal;
    font-size: 0.875rem;
    color: #202020;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.callout-block .callout-source::before {
    content: '- ';
}

.grid__item--image {
    margin: 0 auto;
}

@media (min-width: 64em) {
    .grid__item {
        padding: 1rem;
    }
}

.split-panel__item {
    min-height: 30rem !important;
}

@media (min-width: 64em) {
    .program__block__content {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}

h1, .h1 {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }
          
.content-listing-description {
    margin-top: 1rem;
}

.content-listing-hr {
    margin-top: 2rem;
    margin-bottom: 3rem;
    border-bottom: 5px solid #00467f;
}

.story-block {
    margin-top: 3rem;
    margin-bottom: 80px;
}

@media (min-width: 64em) {
    .story-block {
        margin-top: 3rem;
        margin-bottom: 120px;
    }
}

.story__group__item {
    width: 100%;
    padding: 0.5rem;
}

@media (min-width: 32em) {
    .story__group__item {
        width: calc(100% / 2);
    }
}

@media (min-width: 48em) {
    .story__group__item {
        width: calc(100% / 3);
    }
}

.block--blue .exp__title--small,
.block--blue .exp__title--large {
  color: #ffffff; }
  
.feature-image {
    padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .hero__headline {
        font-size: calc(32px + 16 * (100vw - 320px) / 1120);
    }
}

@media screen and (min-width: 432px) {
	 .singleInfographic {
		 max-width:400px;
	}
}
  
/*.flickity-slider .image__item {
    display: flex;
    align-items: center;
    justify-content: center; }
*/
    
/* used on sliders where one image is taller than the other images; this will prevent any white space
from appearing because the slider will fill the entire height */
.flickity-slider .image__item img {
    width: initial; }
    
.story-blockquote {
    background-color: #FFF; }
    
.story-p-intro {
    font-weight: 700; }

@media screen and (min-width: 320px) {
    .story-p-intro {
        font-size: calc(18px + 4 * (100vw - 320px) / 1120); }
}

@media screen and (min-width: 1440px) {
    .story-p-intro {
        font-size: 30px; }
}

/* rules for videos on storylists */
.storyvideo-container {
    overflow: hidden;
    position: relative; }
    
.storyvideo-container .storyvideo-program__card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px; }
    
.storyvideo-program__card:hover, .storyvideo-program__card:focus {
    color: #fff; }
    
@media (min-width: 32em) {
    .storyvideo-img-container {
        transition: transform 300ms ease;
        position: relative; }
}

.storyvideo-description {
    font-size:1rem;
}

.storylist-video:hover .storyvideo-img-container {
    transform: scale(1.2); }
    
.storyvideo-image {
    display: block; }
    
/* end of rules for videos on storylists */

/* rules for videos on hero images */
.hero__image .media__link {
    width: 13%;    
    z-index: 1;
}

@media (max-width: 1200px) {
    .hero__image .media__link {
        width: 20%;
    }
}

/* end of rules for videos on hero images */

/* CSS Lightbox */
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
	display:initial;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}
/* End of CSS Lightbox */

/* For AU Calendar */
.footer__link--alt:hover, .footer__link--alt:focus {
    color: #ffffff!important;
}
/* End of AU Calendar */

/* blazy image loading transitions */
.b-lazy {
    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
    max-width: 100%;
    opacity: 0;
}
.b-lazy.b-loaded {
    opacity: 1;
}