.promo-card {
	margin-bottom: 30px;
}

.promo-card__figure {
	margin-bottom: 20px;
}
.promo-card__link {
	display: block;
}
.promo-card__link--video {
	position: relative;
}
.play-video-icon {
	position: absolute;
	padding: 10px;
	width: 46px;
	height: 46px;
	top: calc(50% - 23px);
	right: 0;
	left: calc(50% - 23px);
	border-radius: 50%;
}
.no-touchevents .promo-card__link--video:hover:after {
	border-color: rgb(255,255,255);
	border-color: rgba(255,255,255,0.4);
}
.promo-card__text {
	font-size: 14px;
	line-height: 1.5;
}

.promo-card__subheading {
	display: block;
	font-size: 14px;
}
.promo-card__heading {
    margin: 0;
    font-size: 14px;
    font-family: 'ThemeFont-Tertiary', sans-serif;
    text-transform: uppercase;
    -webkit-transition: color 350ms ease;
    -moz-transition: color 350ms ease;
    -o-transition: color 350ms ease;
    transition: color 350ms ease;
}
.promo-card__heading + .promo-card__description,
.promo-card__subheading + .promo-card__description {
	margin-top: 20px;
}
/* Non-BEM as potentially edited via RTE */
.promo-card__description p {
	margin-bottom: 20px;
}
.promo-card__description li {
	display: block;
}
.no-touchevents .promo-card__link:hover .promo-card__heading {
	color: #6c907a;
}

.promo-card__heading + .icon-list {
	margin-top: 30px;
}
.icon-list__link {
    display: block;
    border-top-width: 1px;
    border-top-style: solid;
    padding: 10px 0;
    font-family: 'ThemeFont-Secondary', sans-serif;
}
.icon-list__icon {
	max-width: 60px;
	max-height: 60px;
	width: 60px;
	height: 60px;
}

.promo-card__description .event-list__item {
	padding: 0 0 10px 0;
	background: none;
}
.promo-card__description .event-list__date {
	display: block;
	padding-left: 20px;
}
.promo-card__description .event-list__title {
    display: block;
    margin-bottom: 15px;
    font-family: 'ThemeFont-Secondary', sans-serif;
}

/* Zooming image - currently only used in this module but can be extracted to main CSS file if used elsewhere */
.zoom {
	overflow: hidden;
}
.zoom__container {
	overflow: hidden;
	margin-right: -1px; /* Fixes pixel rounding bug */
}
.zoom__image {
	display: block;
	width: 101%;
	-webkit-transition: transform 500ms ease-out;
    -moz-transition: 	transform 500ms ease-out;
    -o-transition: 		transform 500ms ease-out;
    transition: 		transform 500ms ease-out;
	transform: 			translate3d(0, 0, 0);
}
.no-touchevents .zoom:hover .zoom__image {
    -webkit-transform: 	scale(1.025, 1.025);
	-ms-transform: 		scale(1.025, 1.025);
    transform: 			scale(1.025, 1.025);
}


@media (max-width: 991px) {
	.icon-list__icon {
		max-width: 40px;
		max-height: 40px;
	}
	.promo-card__heading + .icon-list {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.icon-list__icon {
		width: 10px;
	}
}