body {
	font-family: 'PT Sans Caption', sans-serif;
	background-color: #e5f0f3;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wrapper main {
	flex: 1 1 auto;
}

.container {
	max-width: 1352px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

.header-link {
	display: inline-block;
	position: relative;
}

.header-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transition: all 0.2s;
	pointer-events: none;
}

.header-link:hover::before {
	transform: translateY(5px);
	opacity: 0;
}

.bottom-row {
	position: relative;
	text-transform: uppercase;
}

.bottom-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('@/assets/img/decor/button-decor.jpg') center center / cover no-repeat;
}

.bottom-row__text {
	padding-bottom: 7px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid currentColor;
}

@media (max-width: 992px) {
	.bottom-row__text {
		padding-bottom: 5px;
		border-bottom: 1px solid currentColor;
	}
}

.link {
	color: #5960b7;
	font-weight: 700;
}

.post-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.66) 100%);
	z-index: 2;
	pointer-events: none;
	transition: opacity 0.2s;
}

@media (any-hover: hover) {
	.link:hover {
		text-decoration: underline;
	}

	.post-image:hover::before {
		opacity: 0;
	}
}

.post-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-image {
	position: relative;
	padding-bottom: 41%;
}

.article-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
