/* =====================================================
   GUTE IDEEN ZEITUNG — Main Stylesheet
   Zeitungs-Typografie mit Rot-Akzent
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&family=Source+Sans+3:wght@400;600&display=swap');

/* ---- Variables ---- */
:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --black: #1a1a1a;
  --gray-dark: #333;
  --gray-mid: #666;
  --gray-light: #ccc;
  --gray-bg: #f6f4ef;
  --white: #fff;
  --border: 0.5px solid #ccc;
  --border-strong: 1px solid #1a1a1a;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', Helvetica, Arial, sans-serif;
  --max-width: 1100px;
  --content-width: 720px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-serif);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
ul, ol { list-style: none; }

/* =====================================================
   TOPBAR
   ===================================================== */
.site-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--black);
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-topbar a { color: var(--gray-mid); }
.site-topbar a:hover { color: var(--red); }

/* =====================================================
   HEADER / FLAG
   ===================================================== */
.site-header {
  padding: 0 20px;
  background: var(--white);
}
.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-flag {
  text-align: center;
  padding: 16px 0 10px;
  border-bottom: 1.5px solid var(--black);
}
.site-flag .site-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--black);
  text-decoration: none;
  display: block;
}
.site-flag .site-title:hover { color: var(--black); }
.site-flag .site-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-nav {
  border-bottom: 2px solid var(--black);
  border-top: 0.5px solid var(--black);
  margin-top: 1px;
}
.site-nav ul {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 0;
}
.site-nav ul li { position: relative; }
.site-nav ul li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--black);
  transition: color 0.15s, background 0.15s;
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item > a {
  color: var(--red);
  background: none;
}
.site-nav .menu-search {
  margin-left: auto;
  padding: 8px 0 8px 14px;
}
.site-nav .menu-search a { padding: 0; font-size: 14px; }

/* Dropdown */
.site-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: var(--border-strong);
  border-top: 2px solid var(--red);
  min-width: 180px;
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 0;
}
.site-nav ul li:hover > ul { display: flex; }
.site-nav ul li ul li a {
  font-size: 11px;
  padding: 7px 14px;
  border-bottom: var(--border);
  letter-spacing: 0.04em;
}
.site-nav ul li ul li:last-child a { border-bottom: none; }

/* =====================================================
   BREAKING NEWS TICKER
   ===================================================== */
.breaking-bar {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto 18px;
}
.breaking-bar .breaking-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.4);
  padding-right: 14px;
}
.breaking-bar .breaking-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Homepage Grid ---- */
.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border-top: 2px solid var(--black);
  padding-top: 20px;
}
.home-primary { border-right: var(--border-strong); padding-right: 28px; }
.home-sidebar { padding-left: 24px; }

/* ---- Section Label ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  border-bottom: var(--border);
  padding-bottom: 5px;
  margin-bottom: 14px;
}

/* =====================================================
   FEATURED ARTICLE (Lead)
   ===================================================== */
.featured-article { margin-bottom: 28px; }
.featured-article .kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.featured-article h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 10px;
  color: var(--black);
}
.featured-article h2 a:hover { color: var(--red); }
.featured-article .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-dark);
  margin-bottom: 10px;
  border-bottom: var(--border);
  padding-bottom: 10px;
}
.featured-article .byline {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.featured-article .byline .read-time { color: var(--gray-mid); }
.featured-article .featured-image {
  margin-bottom: 14px;
  border: var(--border);
}
.featured-article .featured-image img { width: 100%; }
.featured-article .excerpt {
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
}
.featured-article .excerpt p { margin-bottom: 12px; }
.featured-article .read-more {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.featured-article .read-more:hover { color: var(--red-dark); }
.featured-article .read-more::after { content: ' →'; }

/* ---- Secondary articles (3-col grid below lead) ---- */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: var(--border);
  padding-top: 18px;
  margin-top: 4px;
}
.secondary-article .kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}
.secondary-article h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.secondary-article h3 a:hover { color: var(--red); }
.secondary-article .excerpt-short {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-dark);
}
.secondary-article + .secondary-article {
  border-left: var(--border);
  padding-left: 18px;
}

/* =====================================================
   SIDEBAR
   ===================================================== */
.sidebar-widget { margin-bottom: 28px; }
.sidebar-widget .widget-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 2px solid var(--black);
  padding-bottom: 5px;
  margin-bottom: 14px;
}

/* Sidebar article list */
.sidebar-article {
  border-bottom: var(--border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article .kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 2px;
}
.sidebar-article h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.sidebar-article h4 a:hover { color: var(--red); }
.sidebar-article .excerpt-tiny {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-mid);
}

/* Newsletter box */
.newsletter-box {
  background: var(--gray-bg);
  border-left: 3px solid var(--red);
  padding: 16px;
}
.newsletter-box p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  color: var(--gray-dark);
}
.newsletter-box input[type="email"] {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 8px 10px;
  border: var(--border-strong);
  background: var(--white);
  margin-bottom: 8px;
  outline: none;
}
.newsletter-box input[type="email"]:focus { border-color: var(--red); }
.newsletter-box button {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px;
  border: none;
  cursor: pointer;
}
.newsletter-box button:hover { background: var(--red-dark); }

/* =====================================================
   SINGLE POST
   ===================================================== */
.single-article {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 0 40px;
}
.single-article .kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.single-article h1.entry-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--black);
}
.single-article .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-dark);
  border-bottom: var(--border);
  border-top: var(--border);
  padding: 12px 0;
  margin-bottom: 12px;
}
.single-article .byline {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--black);
}
.single-article .featured-image {
  margin-bottom: 24px;
}
.single-article .featured-image img {
  width: 100%;
}
.single-article .featured-image figcaption {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-mid);
  margin-top: 6px;
}

/* Article body */
.entry-content {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
}
.entry-content p { margin-bottom: 1.2em; }
.entry-content p:first-child::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 68px;
  line-height: 0.82;
  padding-right: 8px;
  padding-top: 6px;
  font-weight: 900;
  color: var(--black);
}
.entry-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 1.6em 0 0.5em;
  border-bottom: 0.5px solid var(--gray-light);
  padding-bottom: 6px;
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 1.4em 0 0.4em;
}
.entry-content blockquote {
  border-left: 3px solid var(--red);
  margin: 1.8em 0;
  padding: 4px 20px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--gray-dark);
}
.entry-content ul, .entry-content ol {
  margin: 0.8em 0 1.2em 1.4em;
  list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content a { color: var(--red); border-bottom: 1px solid rgba(192,57,43,0.3); }
.entry-content a:hover { border-bottom-color: var(--red); }
.entry-content strong { font-weight: 600; }
.entry-content em { font-style: italic; }
.entry-content img { margin: 1.6em 0; }
.entry-content figure figcaption {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: -1em;
  margin-bottom: 1.6em;
}

/* Harvard-style references */
.entry-content .quellen,
.entry-content h2.quellen-title {
  border-top: 2px solid var(--black);
  margin-top: 2.5em;
  padding-top: 10px;
}
.entry-content .quellen-list {
  font-family: var(--font-sans);
  font-size: 13px;
  list-style: none;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0;
}
.entry-content .quellen-list li { margin-bottom: 6px; }

/* CTA Box */
.cta-box {
  background: var(--gray-bg);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  margin: 2em 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}
.cta-box a {
  color: var(--red);
  font-weight: 600;
  border-bottom: none;
}

/* Tags */
.entry-tags {
  margin-top: 28px;
  padding-top: 14px;
  border-top: var(--border);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-mid);
}
.entry-tags a {
  display: inline-block;
  padding: 3px 8px;
  border: var(--border-strong);
  margin: 3px 3px 3px 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.entry-tags a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* =====================================================
   ARCHIVE / CATEGORY PAGE
   ===================================================== */
.archive-header {
  border-bottom: 2px solid var(--black);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.archive-header .archive-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.archive-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}

.posts-list { }
.post-item {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: var(--border);
  padding: 18px 0;
}
.post-item:first-child { padding-top: 0; }
.post-item .kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}
.post-item h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.post-item h2 a:hover { color: var(--red); }
.post-item .post-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.post-item .excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-dark);
}
.post-item .post-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: var(--border);
}
.post-item .post-thumb-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  border: var(--border);
}

/* Pagination */
.pagination {
  margin: 32px 0;
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 13px;
}
.pagination .page-numbers {
  padding: 6px 12px;
  border: var(--border-strong);
  color: var(--black);
}
.pagination .page-numbers.current {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.pagination .page-numbers:hover:not(.current) {
  background: var(--gray-bg);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  border-top: 2px solid var(--black);
  margin-top: 40px;
  padding: 28px 20px 16px;
  background: var(--white);
}
.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-col .footer-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: var(--border);
  padding-bottom: 5px;
  margin-bottom: 12px;
}
.footer-col .brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-dark);
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray-dark);
  font-family: var(--font-sans);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: var(--border);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--gray-mid); }
.footer-bottom a:hover { color: var(--red); }

/* =====================================================
   SEARCH
   ===================================================== */
.search-form {
  display: flex;
  border: var(--border-strong);
  overflow: hidden;
  margin-bottom: 24px;
}
.search-form input[type="search"] {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 14px;
  border: none;
  outline: none;
  background: var(--white);
  color: var(--black);
}
.search-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.search-form button:hover { background: var(--red-dark); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; }
  .home-primary { border-right: none; padding-right: 0; border-bottom: 2px solid var(--black); padding-bottom: 24px; margin-bottom: 24px; }
  .home-sidebar { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .secondary-grid { grid-template-columns: 1fr; }
  .secondary-article + .secondary-article { border-left: none; padding-left: 0; border-top: var(--border); padding-top: 14px; }
}

@media (max-width: 600px) {
  .site-topbar { display: none; }
  .site-flag .site-title { letter-spacing: -1px; }
  .site-nav ul { flex-wrap: wrap; gap: 0; }
  .site-nav ul li a { padding: 7px 10px; font-size: 11px; }
  .post-item { grid-template-columns: 1fr; }
  .post-item .post-thumb { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .single-article .entry-content { font-size: 16px; }
}

/* =====================================================
   UTILITY
   ===================================================== */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}
.clearfix::after { content: ''; display: table; clear: both; }

/* =====================================================
   ARCHIVE — RHYTHMISCHES LAYOUT
   Lead | Pair | Medium | Triple
   ===================================================== */

/* Alle Bilder ausblenden */
.featured-image,
.post-thumb,
.post-thumb-placeholder,
.wp-post-image,
img.attachment-giz-thumb,
img.attachment-giz-featured,
img.attachment-giz-wide {
  display: none !important;
}

/* LEAD — volle Breite, große Headline */
.post-item--lead {
  border-bottom: 2px solid var(--black);
  padding: 24px 0 20px;
  margin-bottom: 0;
}
.post-item--lead h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: var(--headline-weight, 400);
  line-height: 1.1;
  margin-bottom: 8px;
}
.post-item--lead .excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-dark);
  max-width: 680px;
}

/* PAIR — zwei Spalten */
.post-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: var(--border);
}
.post-item--half {
  padding: 18px 0;
}
.post-item--half:first-child {
  border-right: var(--border);
  padding-right: 24px;
}
.post-item--half:last-child {
  padding-left: 24px;
}
.post-item--half h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--headline-weight, 400);
  line-height: 1.2;
  margin-bottom: 6px;
}
.post-item--half .excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-dark);
}

/* MEDIUM — mittelgroß, dezenter Akzent links */
.post-item--medium {
  border-bottom: var(--border);
  border-left: 3px solid var(--red);
  padding: 16px 0 16px 16px;
}
.post-item--medium h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: var(--headline-weight, 400);
  line-height: 1.15;
  margin-bottom: 6px;
}
.post-item--medium .excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-dark);
}

/* TRIPLE — drei kleine Spalten */
.post-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--black);
}
.post-item--third {
  padding: 16px 0;
}
.post-item--third:not(:last-child) {
  border-right: var(--border);
  padding-right: 20px;
}
.post-item--third:not(:first-child) {
  padding-left: 20px;
}
.post-item--third h2 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: var(--headline-weight, 400);
  line-height: 1.25;
  margin-bottom: 4px;
}
.post-item--third .excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-mid);
}

/* Responsive */
@media (max-width: 700px) {
  .post-pair { grid-template-columns: 1fr; }
  .post-item--half:first-child { border-right: none; padding-right: 0; border-bottom: var(--border); }
  .post-item--half:last-child { padding-left: 0; }
  .post-triple { grid-template-columns: 1fr; }
  .post-item--third:not(:last-child) { border-right: none; padding-right: 0; border-bottom: var(--border); }
  .post-item--third:not(:first-child) { padding-left: 0; }
}

/* Gap-Filler: linke Lead-Spalte streckt sich auf Höhe der rechten */
.home-grid .home-primary,
.layout-col-left {
  display: flex;
  flex-direction: column;
}
.giz-article {
  flex: 1 0 auto;
}
/* Spalten in Layouts gleich hoch */
.home-grid > div,
.post-pair > article,
.post-triple > article {
  align-self: stretch;
}

/* =====================================================
   SINGLE — Artikel + Sidebar Layout
   ===================================================== */
@media (max-width: 860px) {
  /* Stack sidebar below article on mobile */
  .single-article ~ aside {
    padding-left: 0 !important;
    padding-top: 24px !important;
    border-top: 2px solid #1a1a1a;
  }
}

/* =====================================================
   BILDER — automatisch auf Spaltenbreite begrenzen
   ===================================================== */
.single-article .entry-content img,
.single-article .featured-image img,
.entry-content img,
.entry-content figure img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
/* WordPress alignment classes anpassen */
.entry-content .alignfull,
.entry-content .alignwide {
  max-width: 100% !important;
  width: 100% !important;
}
.entry-content .alignleft,
.entry-content .alignright {
  max-width: 45% !important;
}
