:root {
	--sk-tile-padding: 1em 1.5em 2em;
}

@media only screen and (max-width: 1068px) {
	:root {
		--sk-tile-padding: 1em 1.5em 2em;
	}
}

/* Cards */
.sc-card {
	display: flex;
	flex-direction: column;
	height: 100% !important;
	border: 1px solid var(--sk-fill-gray-tertiary);
	width: 100%;
	max-width: 100%;
}

.sc-card__media {
	flex-shrink: 0;
}

.sc-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	width: 100%;
	box-sizing: border-box;
}

.tile-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
}

.sc-card__image-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.sc-card__image {
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0.95);
	aspect-ratio: 16/9;
}

@media (min-width: 734px) and (max-width: 1068px) {
	.sc-card {
		max-width: none;
	}
}

@media (min-width: 1068px) {
	.sc-card {
		max-width: 291px;
	}
}

.sc-card:hover .sc-card__image {
	transform: scale(1.045);
	transition: transform 0.5s ease-in-out;
}

.sc-card__title {
	/* word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto; */
	line-height: 1.4;
	margin: 0 0 8px 0;
}

.tile-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
	width: 100%;
}

.tile-content:hover * {
	text-decoration: none;
}

.sc-card__tags {
	margin-top: auto;
}

/* Link Reset */

a.sc-card {
	text-decoration: none;
	color: var(--glyph-gray);
	/* display: block; */
}

a.sc-card:hover {
	text-decoration: none;
}

a.sc-card__title {
	color: inherit;
}

/* Layout */
#main section.section {
	padding-top: 4em;
	padding-bottom: 4em;
}
#main section .section-content .row {
	margin-left: 0;
	margin-right: 0;
}
#main section .section-content .row > .column {
	padding: 0;
}

@media only screen and (max-width: 1068px) {
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

@media only screen and (max-width: 734px) {
	#main section.section {
		padding-top: 2em;
		padding-bottom: 2em;
	}
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 1em 0;
	}
}