/* =========================================================
   WILTARA MEDIA PAGE
========================================================= */

.wlt-media-page {
	width: 100%;
	overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.wlt-media-hero {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	background: #000000;
}

.wlt-media-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.wlt-media-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.wlt-media-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 0 0 76px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.wlt-media-hero__content {
	width: 100%;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wlt-media-hero__heading {
	margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 48px;
	line-height: 58px;
	font-weight: 300;
	color: #FFFFFF;
	letter-spacing: 0;
}

.wlt-media-hero__description {
	margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #DDDDDD;
	letter-spacing: 0;
}

.wlt-media-card__image-link{
	display:block;
	text-decoration:none;
}

.wlt-media-card__title-link{
	color:inherit;
	text-decoration:none;
	transition:opacity .3s ease;
}

.wlt-media-card__title-link:hover{
	opacity:.75;
}

/* =========================================================
   MEDIA LIST
========================================================= */

.wlt-media-list {
	width: 100%;
	padding: 60px 20px;
	background: #EDE8E4;
	box-sizing: border-box;
}

.wlt-media-list__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.wlt-media-list__grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

/* =========================================================
   CARD
========================================================= */

.wlt-media-card {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 550px;
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	background: #FFFFFF;
	overflow: hidden;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.wlt-media-card__pill {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	padding: 8px 16px;
	border-radius: 4px;
	background: #DB8629;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
}

.wlt-media-card__image-wrap {
	width: 100%;
	height: 270px;
	flex: 0 0 270px;
	overflow: hidden;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}


/* Default all cards */
.wlt-media-card__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: left center;
}

/* First card */
.wlt-media-card:first-child .wlt-media-card__image {
	object-fit: contain;
	object-position: center center;
}


.wlt-media-card__body {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.wlt-media-card__title {
	margin: 0 0 14px;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	color: #003A5C;
	min-height: 68px;
}

.wlt-media-card__description {
	margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #333333;
}

.wlt-media-card__meta {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #636262;
}

.wlt-media-card__meta a,
.wlt-media-card__meta strong {
	color: #003A5C;
	font-weight: 400;
	text-decoration: none;
}

.wlt-media-card__meta time {
	color: #DB8629;
}

.wlt-media-card__dot {
	color: #003A5C;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.wlt-media-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.85s ease,
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.wlt-media-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.wlt-media-list__grid .wlt-media-reveal:nth-child(1) {
	transition-delay: 0.06s;
}

.wlt-media-list__grid .wlt-media-reveal:nth-child(2) {
	transition-delay: 0.12s;
}

.wlt-media-list__grid .wlt-media-reveal:nth-child(3) {
	transition-delay: 0.18s;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 1025px) and (max-width: 1600px){
	.wlt-media-hero__content {
		max-width: 800px;
	}

	.wlt-media-list {
		padding: 60px 20px;
	}
	
	.wlt-media-hero__inner {
	padding: 0 20px 76px;
	    
	}

}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {
	.wlt-media-hero {
		height: 420px;
	}

	.wlt-media-hero__inner {
		padding: 0 20px 58px;
	}

	.wlt-media-hero__content {
		max-width: 800px;
	}

	.wlt-media-hero__heading {
		font-size: 42px;
		line-height: 52px;
	}

	.wlt-media-list {
		padding: 60px 20px;
	}

	.wlt-media-list__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wlt-media-card {
		min-height: 540px;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (min-width: 320px) and (max-width: 767px) {
	.wlt-media-hero {
		height: 390px;
	}

	.wlt-media-hero__inner {
		padding: 0 20px 44px;
	}

	.wlt-media-hero__content {
		max-width: 100%;
	}

	.wlt-media-hero__heading {
		font-size: 36px;
		line-height: 46px;
	}

	.wlt-media-hero__description {
		font-size: 15px;
		line-height: 25px;
	}

	.wlt-media-list {
		padding: 60px 20px;
	}

	.wlt-media-list__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.wlt-media-card {
		min-height: 540px;
	}

	.wlt-media-card__image-wrap {
		height: 285px;
		flex-basis: 285px;
	}

	.wlt-media-card__title {
		font-size: 22px;
		line-height: 32px;
	}
}