.c-article__head {
	padding: 160px 20px 90px;
}

.c-article__head-inner {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.c-article__category {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	color: #1a1b1d;
}

.c-article__category::before {
	content: '[';
}

.c-article__category::after {
	content: ']';
}

.c-article__title {
	margin-top: 24px;
	font-size: 48px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.c-article__title {
		margin-top: 8px;
		font-size: calc(48px * 0.8);
	}
}

.c-article__featured {
	padding: 0 20px 90px;
}

.c-article__featured-image {
	overflow: hidden;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 40px;
	aspect-ratio: 16/9;
}

.c-article__featured-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}