.wp-block-cover {
	padding-right: 33%;
}

blockquote {
	max-width: 800px;
	margin-inline: auto;
	padding: 2rem;

	display: flex;
	flex-direction: column;
	gap: 1rem;

	background-color: rgba(0, 0, 0, 0.5);
}

blockquote em {
	font-size: 3rem;
}

@media (max-width: 1280px) {
	blockquote em {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	blockquote em {
		font-size: 1rem;
	}
}

blockquote p {
	font-size: 1.25rem;
}

.intro-grid {
	max-width: 1280px;
	margin-inline: auto;
	gap: 2rem;
	padding: 4rem 2rem;
}

@media (max-width: 1280px) {
	.intro-grid {
		grid-template-columns: 1fr !important;
		grid-template-rows: 1fr 1fr 1fr;
	}
}

.intro-grid > div {
	min-height: 12rem;
	border: solid 1px var(--secondary);
	padding: 2rem;

	position: relative;
	text-align: center;
}

.intro-grid > div::after {
	content: '';
	min-height: 12rem;
	border: solid 1px var(--bg2);
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.intro-grid > div h3 {
	position: absolute;
	z-index: 50;
	bottom: -2rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	width: max-content;

	background-color: var(--bg2);
	color: var(--bg1);
	font-size: 2rem;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	padding: 1rem 4rem;
}

@media (max-width: 480px) {
	.intro-grid > div h3 {
		padding: 1rem 1rem;
	}
}

.intro-grid > div a {
	color: var(--secondary);
}

.greeting {
	max-width: 1280px;
	margin-inline: auto;
	gap: 2rem;
	padding: 4rem 2rem;
}

.greeting h2 {
	text-transform: uppercase;
	color: var(--secondary);
}

.greeting p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.greeting-grid {
	gap: 4rem 2rem;
}

.greeting-grid > div {
	min-height: 12rem;
	border: solid 1px var(--secondary);
	padding: 2rem;

	position: relative;
	text-align: center;
}

.greeting-grid > div::after {
	content: '';
	min-height: 12rem;
	border: solid 1px var(--bg2);
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.greeting-grid div:nth-child(2n) {
	transform: translateY(2rem);
}

@media (max-width: 600px) {
	body .is-layout-grid {
		display: flex;
		flex-direction: column !important;
	}

	.greeting-grid div:nth-child(2n) {
		transform: translateY(0rem);
	}
}

.greeting a:hover {
	color: #0056b3;
}

.home-posts {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 4rem 2rem;
}

.home-posts h2 {
	text-transform: uppercase;
	color: var(--secondary);
}

.home-posts hr {
	margin-bottom: 2rem;
}

.home-posts > a {
	margin-top: 4rem;
	width: max-content;
	padding: 0.5rem 1rem;
	border: solid 1px var(--secondary);
	border-radius: 1.5rem;
	color: var(--secondary);

	transition: color 0.15s ease-in-out;
}

.home-posts > a:hover {
	color: var(--bg2);
}

.post-grid {
	display: flex;
	gap: 2rem;
}

@media (max-width: 1280px) {
	.post-grid {
		flex-direction: column;
	}
}

.post-preview {
	flex: 1;
	display: flex;
	background-color: var(--post);
	flex-direction: column;
}

.post-preview:hover {
	background-color: var(--bg1);
	box-shadow: 0px 0px 8px -2px #000000;
}

.post-preview .thumbnail {
	height: 20rem;
	flex-shrink: 0;
}

.post-preview img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.post-preview-content {
	padding: 1rem;
	flex: 1;

	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.post-preview-content time,
.post-preview-content h1 {
	font-weight: 800;
}

.post-preview-content h1 {
	font-size: 1.25rem;
}

.post-preview-content p {
	margin-block: 2rem;
}

.post-preview-content a {
	margin-top: auto;
	width: max-content;
	padding: 0.5rem 1rem;
	border: solid 1px var(--secondary);
	border-radius: 1.5rem;
	color: var(--secondary);

	transition: all 0.15s ease-in-out;
}

.post-preview-content a:hover {
	border: solid 1px var(--bg2);
	background-color: var(--bg2);
	color: var(--bg1);
}

.reccomendation {
	max-width: 1280px;
	margin-inline: auto;

	padding: 4rem 2rem;

	display: flex;
	flex-direction: row;
	align-items: start;
	gap: 4rem;
}

@media (max-width: 1280px) {
	.reccomendation {
		flex-direction: column;
		align-items: center;
	}
}

.reccomendation figure {
	width: max-content;
	flex-shrink: 0;

	border: solid 1px var(--secondary);
	padding: 1.5rem;

	position: relative;
}

.reccomendation figure::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 4px;
	left: 4px;
	border: solid 1px var(--bg2);
}

@media (max-width: 1280px) {
	.reccomendation figure {
		width: auto;
		flex-shrink: 1;
	}
}

.reccomendation div {
	display: flex;
	flex-direction: column;
}

.reccomendation h2 {
	text-transform: uppercase;
	color: var(--secondary);
}

.reccomendation p {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

p.container {
	font-size: 1.5rem;
	padding: 0rem 2rem;
}

.swiper-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 4rem 2rem;
	padding-bottom: 0rem;
}

.swiper-title h2 {
	text-transform: uppercase;
	color: var(--secondary);
}

.swiper-title hr {
	margin-inline: auto;
}

.swiper {
	width: 100%;
	height: 24rem;
	margin-inline: auto;
	padding: 2rem !important;

	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow-y: visible;
}

.mySwiper .swiper-slide {
	position: relative;
	padding: 2rem;
	background-image: var(--bg1);
	border-radius: 16px;
	box-shadow: 0px 0px 8px -2px #000000;
	border-radius: 0.5rem;
	height: 100%;

	display: flex;
	flex-direction: column;

	gap: 1rem;
}

@media (max-width: 480px) {
	.mySwiper .swiper-slide p {
		font-size: 0.75rem;
	}
}

.slide-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--secondary);
}

.slide-header .thumbnail img {
	border-radius: 100%;
}

.swiper-controls {
	display: flex;
	justify-content: center;
	align-items: center;

	gap: 2rem;

	font: normal normal normal 14px/1 FontAwesome;
	padding-bottom: 2rem;
}

#prev,
#next {
	background-color: var(--secondary);
	padding: 1rem;
	color: var(--bg1);
}

#prev:hover,
#next:hover {
	background-color: var(--bg2);
}

#prev::after {
	content: '\f060';
}

#next::after {
	content: '\f061';
}
