/*
Theme Name: My Twenty Twenty Child Theme
Theme URI: https://example.com
Description: A child theme for Twenty Twenty.
Author: Your Name
Author URI: https://example.com/
Template: twentytwenty
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/*single-post*/
.single-post {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 20px;
}

.post-title {
	font-size: 2rem;
	margin-bottom: 10px;
}

.post-meta {
	color: #777;
	font-size: 0.9em;
	margin-bottom: 20px;
}

.post-thumbnail img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.post-content {
	font-size: 1.1em;
	line-height: 1.8;
}

.post-sidebar {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
}/*End single-post*/