.marcano-blog-info {
	max-width: 1120px;
}

.marcano-blog-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 42px;
	padding-bottom: 50px;
}

.marcano-blog-card {
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	position: relative;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.marcano-blog-card:hover {
	box-shadow: 0 24px 54px rgba(2, 100, 80, 0.18);
	transform: translateY(-6px);
}

.marcano-blog-card__image {
	display: block;
	height: 240px;
	overflow: hidden;
}

.marcano-blog-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	width: 100%;
}

.marcano-blog-card:hover .marcano-blog-card__image img {
	transform: scale(1.05);
}

.marcano-blog-card__content {
	align-items: center;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 34px 28px 30px;
	text-align: center;
}

.marcano-blog-card__eyebrow {
	color: #757575;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.55em;
	margin: 0 0 14px;
	text-align: center;
	text-transform: uppercase;
}

.marcano-blog-card h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 0.95;
	margin: 0 0 18px;
	text-align: center;
	text-transform: uppercase;
}

.marcano-blog-card h2 a {
	color: #111;
	text-decoration: none;
}

.marcano-blog-card h2 a:hover {
	color: #026450;
}

.marcano-blog-card__content > p:not(.marcano-blog-card__eyebrow) {
	color: #555;
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 24px;
	max-width: 280px;
	text-align: center;
}

.marcano-blog-card__button,
.marcano-single-article__back {
	background: #026450;
	border: 1px solid #026450;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 10px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.32em;
	margin-top: auto;
	padding: 13px 24px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.25s ease;
}

.marcano-blog-card__button:hover,
.marcano-single-article__back:hover {
	background: #fff;
	color: #026450;
}

.marcano-single-article {
	margin-top: 34px;
	padding-bottom: 50px;
}

.marcano-single-article__image {
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
	height: 360px;
	margin-bottom: 28px;
	overflow: hidden;
}

.marcano-single-article__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.marcano-single-article__meta {
	color: #026450;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin: 0 0 24px;
	text-align: left;
	text-transform: uppercase;
}

.marcano-single-article__content {
	color: #333;
	font-size: 18px;
	line-height: 1.75;
	max-width: 760px;
	text-align: left;
}

.marcano-single-article__content p {
	margin: 0 0 22px;
}

.marcano-single-article__content h2,
.marcano-single-article__content h3 {
	color: #026450;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	line-height: 1.1;
	margin: 34px 0 14px;
}

.marcano-single-article__back {
	border-radius: 0;
	margin-top: 26px;
}

@media screen and (max-width: 767px) {
	.marcano-blog-grid {
		grid-template-columns: 1fr;
	}

	.marcano-blog-card__image,
	.marcano-single-article__image {
		height: 240px;
	}

	.marcano-blog-card h2 {
		font-size: 34px;
	}
}
