/*
Theme Name: Zed
Theme URI: https://example.com/zed
Author: Your Name
Author URI: https://example.com
Description: A clean starter theme for WordPress.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zed
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Base reset and typography */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #fff;
}

a {
	color: #2563eb;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a:hover {
	color: #1d4ed8;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Layout */
.zed-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.zed-main {
	flex: 1;
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem 1.25rem 3rem;
}

/* Header */
.zed-header {
	border-bottom: 1px solid #e5e7eb;
	background: #fafafa;
}

.zed-header__inner {
	max-width: 72rem;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.zed-site-title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
}

.zed-site-title a {
	color: inherit;
	text-decoration: none;
}

.zed-site-title a:hover {
	color: #2563eb;
}

.zed-site-description {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: #6b7280;
}

/* Navigation */
.zed-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
}

.zed-nav a {
	color: #374151;
	text-decoration: none;
	font-weight: 500;
}

.zed-nav a:hover,
.zed-nav .current-menu-item > a {
	color: #2563eb;
}

/* Content */
.zed-entry {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e7eb;
}

.zed-entry:last-child {
	border-bottom: none;
}

.zed-entry__title {
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
	line-height: 1.25;
}

.zed-entry__title a {
	color: inherit;
	text-decoration: none;
}

.zed-entry__title a:hover {
	color: #2563eb;
}

.zed-entry__meta {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 1rem;
}

.zed-entry__content > *:first-child {
	margin-top: 0;
}

.zed-entry__content > *:last-child {
	margin-bottom: 0;
}

/* Footer */
.zed-footer {
	margin-top: auto;
	padding: 1.5rem 1.25rem;
	border-top: 1px solid #e5e7eb;
	background: #fafafa;
	font-size: 0.875rem;
	color: #6b7280;
	text-align: center;
}

/* WordPress blocks / alignment */
.alignwide {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.wp-block-image figcaption {
	font-size: 0.875rem;
	color: #6b7280;
	margin-top: 0.5rem;
}
