@media (min-width: 761px) {
	.blog-post h1 {
		font-size: 72px;
	}
}
@media (max-width: 768px) {
	.blog-post h1 {
		font-size: 42px;
	}
}

* {
	font-family: sans-serif;
}

.post blockquote {
	margin-top: 2rem;
	font-size: 24px;
	font-family: serif;
	font-style: italic;
}

.post .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
}

.blog-post {
	margin: 0 auto;
	padding-top: 8rem;
	padding-bottom: 8rem;
	width: 50%;
	max-width: 960px;
	min-width: 360px;
}

.blog-post h1 {
	margin-top: 3rem;
	margin-bottom: 3rem;
	color: #fff;
	line-height: 1;
	letter-spacing: -1px;
	font-weight: bold;
	font-family: "FontTitle", sans-serif;
}

.blog-post h2 {
	margin-top: 4rem;
	margin-bottom: 1.2rem;
	color: #fff;
	font-size: 2.4rem;
	font-family: "FontTitle", sans-serif;
	line-height: 1;
}
.blog-post h3 {
	margin-top: 3rem;
	margin-bottom: 1.2rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
}

.blog-post p {
	margin: 0.8rem 0;
	color: var(--color-base-content);
	font-size: 16px;
	font-family: sans-serif;
	line-height: 1.96;
}

.blog-post strong {
	color: #fff;
}

.blog-post figure {
	margin: 2rem 0;
}

.blog-post figure figcaption {
	margin-top: 1rem;
	color: var(--color-base-content);
	opacity: 0.35;
	font-size: 14px;
	font-family: sans-serif;
	font-style: italic;
	line-height: 1;
	text-align: center;
}

.blog-post img {
	width: 100%;
	border-radius: 1rem;
}

.blog-post a {
	padding: 0 0.5rem;
	color: #fff;
	font-family: sans-serif;
	font-weight: bold;
	line-height: 1.96;
	text-decoration: none;
	transition: color 0.2s ease;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid #fff;
}

.blog-post a:hover {
	color: var(--color-primary);
}

.blog-post ol,
.blog-post ul {
	padding-left: 1rem;
	list-style-type: disc;
}

.blog-post .ff-li {
	display: table-row;
	counter-increment: list-item 1;
	font-family: sans-serif;
	line-height: 2;
}

.blog-post .ff-li::before {
	display: table-cell;
	width: 2.25ch;
	box-sizing: border-box;
	padding-inline-end: 0.75ch;
	content: "-";
}

.blog-post .author {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.blog-post .author .avatar {
	width: 48px;
	border-radius: 50%;
	overflow: hidden;
}

.blog-post .author .info {
	display: flex;
    gap: 0.2rem;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-post .author .name {
	font-weight: bold;
	font-size: 1.2rem;
}

.blog-post .update-time {
	color: var(--color-base-content);
	font-size: 14px;
	font-family: sans-serif;
	line-height: 1;
	opacity: 0.75;
}