/*
Theme Name: General Site Theme
Theme URI:
Author:
Author URI:
Description: A basic general-purpose WordPress theme structure.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: general-theme
*/

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: #222;
	background: #fff;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	border-bottom: 1px solid #eee;
}

.site-title a {
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: #111;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	text-decoration: none;
	color: #333;
}

.site-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}

@media (max-width: 780px) {
	.site-content {
		grid-template-columns: 1fr;
	}
}

.entry-title a {
	text-decoration: none;
	color: #111;
}

.entry-meta {
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 0.5rem;
}

.pagination {
	margin-top: 2rem;
	display: flex;
	gap: 0.5rem;
}

.site-footer {
	padding: 2rem;
	text-align: center;
	border-top: 1px solid #eee;
	color: #777;
	font-size: 0.9rem;
}

.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5rem;
}
