/*
	Theme Name: zwetschke WP Theme
	Theme URI: https://www.zwetschke.de/
	Description: Werbeagentur für Web, Design, Strategie & Beratung.
	Author: Agentur zwetschke ®
	Author URI: https://www.zwetschke.de
	Version: 3.1.1
	Text Domain: zwetschke-base
	Tags: Agentur zwetschke - Full-Service-Agentur, haben wir uns noch nie genannt, weil niemand alles kann. Wir bieten aus Überzeugung nur das an, was wir richtig gut können. Und das kommunizieren wir offen & auf Augenhöhe. Aus diesen Gründen bezeichnen wir uns als Best-Service-Agentur.
*/

/* Base layout */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.5;
	color: #1a1a1a;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.site-header {
	display: flex;
	align-items: center;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.site-header .logo {
	font-weight: 700;
	font-size: 1.25rem;
	text-decoration: none;
	color: inherit;
}

.main-navigation .main-menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation .main-menu a {
	text-decoration: none;
	color: inherit;
}

/* Footer */
.site-footer {
	padding: 40px 0;
	border-top: 1px solid #eee;
	margin-top: 60px;
	font-size: 0.875rem;
	color: #666;
}

/* Archive / blog listing */
.post-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
	margin: 32px 0;
}

.post-card__image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.post-card__title {
	font-size: 1.15rem;
	margin: 12px 0 8px;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.load-more-wrapper {
	text-align: center;
	margin: 20px 0 40px;
}

.load-more-button {
	padding: 12px 28px;
	border: 1px solid #1a1a1a;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	border-radius: 4px;
}

.load-more-button:disabled {
	opacity: 0.5;
	cursor: default;
}