	#film-cards { 
	}
	.film-block-title {
		font-family: 'sentinel', serif;
		font-size: 45px;
		line-height: 55px;
		font-weight: 600;
		margin-bottom: 96px;
		text-align: center;	
	}
	.film-card-grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		column-gap: 32px;
		row-gap: 32px;	
		width: 1400px;
		max-width: 100%;
		margin: 0 auto;
	}
	#film-cards .film-card {
		box-shadow: var(--hmns-box-shadow-light);
		border-bottom: 4px solid var(--dark-monarch);
		background: white;
	}
	#film-cards .film-card a {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;	
	}
	#film-cards .film-card .top-section {
		width: 100%;
		height: 0;
		padding-bottom: 56.52%;	 
	}
	#film-cards .film-card .bot-section {
		padding: 32px 32px 96px;
		min-height: 260px;		
	}
	#film-cards .film-card .bot-section .bot-super {
		font-family: 'termina', sans-serif;
		font-weight: 400;
		font-size: 14px;
		text-transform: uppercase;
		margin-bottom: 8px;	
		color: var(--monarch);
	}
	#film-cards .film-card .bot-section .bot-title {
		font-family: 'sentinel', serif;
		font-size: 35px;
		line-height: 42px;	
		font-weight: 600;
		margin-bottom: 10px;
	}
	#film-cards .film-card .bot-section .bot-runtime {
		position: absolute;
		bottom: 32px;
		left: 32px;
		color: var(--fossil-rim);	
	}
	@media screen and (max-width: 1200px) {
		.film-card-grid { grid-template-columns: 1fr 1fr; }	
	}
	@media screen and (max-width: 768px) {
		.film-card-grid { grid-template-columns: 1fr; } 	
	}
