.fp-card {
	display: grid;
	grid-template-columns: 60% 40%;
	align-items: stretch;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.fp-card--no-image {
	grid-template-columns: 1fr;
}

.fp-card__media {
	min-height: 100%;
	background-color: #e8e8e8;
	background-image: var(--fp-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fp-card__body {
	display: flex;
	flex-direction: column;
	padding: 2rem 2.5rem;
}

.fp-card__title {
	margin: 0 0 1rem;
	font-family: var(--et_global_heading_font);
	font-size: 26px;
	font-weight: 500;
	line-height: 1em;
	color: #333;
}

.fp-card__title a {
	text-decoration: none;
	color: inherit;
}

.fp-card__title a:hover {
	color: rgb(46, 163, 242);
}

.fp-card__excerpt {
	margin: 0;
	font-size: 18px;
	line-height: 1.55;
	color: #666;
}

.fp-card__more {
	display: inline-block;
	margin-top: 0.75rem;
	font-size: 19px;
	line-height: 2em;
	color: rgb(46, 163, 242);
	text-decoration: none;
}

.fp-card__more:hover {
	text-decoration: underline;
}

@media (max-width: 980px) {
	.fp-card {
		grid-template-columns: 60% 40%;
	}

	.fp-card__body {
		padding: 1.5rem 1.75rem;
	}

	.fp-card__title {
		font-size: 22px;
	}

	.fp-card__excerpt {
		font-size: 16px;
	}

	.fp-card__more {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.fp-card {
		grid-template-columns: 1fr;
	}

	.fp-card__media {
		min-height: 220px;
		height: 220px;
	}

	.fp-card__body {
		padding: 1.25rem 1.35rem 1.5rem;
	}

	.fp-card__title {
		font-size: 20px;
		margin-bottom: 0.75rem;
	}

	.fp-card__excerpt {
		font-size: 15px;
	}

	.fp-card__more {
		font-size: 16px;
	}
}
