/* Article Page */
.article-page {
	width: min(92vw, 900px);
	margin: 3vh auto 5vh;
	display: flex;
	flex-direction: column;
	gap: 3vh;
}

.article-title {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(20px, calc(0.45vw + 1.2vh), 32px);
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.article-subtitle {
	margin: -1.5vh 0 0;
	font-family: 'Cabin', sans-serif;
	font-size: clamp(17px, calc(0.55vw + 1.2vh), 28px);
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #8a8a8a;
}

.article-subtitle::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin: 1.8vh auto 0;
	background-color: #fff;
}

.text-open,
.text-body {
	font-family: 'Cabin', sans-serif;
	line-height: 1.8;
	white-space: pre-line;
	text-align: justify;
}

.text-open p,
.text-body p {
	margin: 0;
	text-indent: 2em;
}

.article-text-large {
	font-size: clamp(12px, calc(0.45vw + 1.15vh), 28px);
}

.text-open {
	color: #8a8a8a;
	font-style: italic;
}

@media (max-width: 600px) {
	.article-page {
		width: calc(100% - 8vw);
		margin: 2.5vh 4vw 4vh;
	}
}
