@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&display=swap');

/* ============================================
   OLAF DUNKEL – Minimalist Blog & Podcast
   Modern, Black & White, SEO-Optimized
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-100: #f2f2f2;
  --white: #fff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', 'Georgia', serif;
  --max-width: 1200px;
  --content-width: 780px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

main {
  flex: 1;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  text-transform: uppercase;
}

.site-logo span {
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gray-700);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* --- Submenu / Dropdown ("Meine Services") --- */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-caret {
  font-size: 0.7em;
  line-height: 1;
  transition: transform var(--transition);
}

.nav-item:hover .nav-caret,
.nav-item.is-open .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -1rem;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 110;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gray-700);
  white-space: nowrap;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  color: var(--black);
  background: var(--gray-100);
  opacity: 1;
}

/* --- Such-Icon im Header --- */
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.nav-search svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-search::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-minimal {
  padding: 4rem 0 2rem;
}

.hero-minimal h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* --- Section Headers --- */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.section-header h2 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.section-header a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}

.section-header a:hover {
  color: var(--black);
  opacity: 1;
}

/* --- Article Cards --- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card .card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(100%);
}

.article-card .card-image img[src*="OD-Logo"] {
  object-fit: contain;
  padding: 1.5rem;
  filter: none;
}

.article-card:hover .card-image img {
  transform: scale(1.03);
  filter: grayscale(60%);
}

.article-card .card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.article-card .card-category {
  font-weight: 600;
  color: var(--black);
}

.article-card h3 {
  margin-bottom: 0.75rem;
}

.article-card h3 a {
  transition: none;
}

.article-card h3 a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-card .card-excerpt {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Featured Article (Large) --- */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.featured-article .card-image {
  overflow: hidden;
  background: var(--gray-100);
}

.featured-article .card-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.featured-article:hover .card-image img {
  filter: grayscale(50%);
}

.featured-article .card-content {
  padding: 1rem 0;
}

.featured-article .card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.featured-article .card-category {
  font-weight: 600;
  color: var(--black);
}

.featured-article h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.featured-article .card-excerpt {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: '\2192';
  transition: transform var(--transition);
}

.read-more:hover {
  opacity: 1;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* --- Podcast Cards --- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.podcast-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), transform var(--transition);
}

.podcast-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.podcast-card .podcast-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  min-width: 60px;
  display: none;
}

.podcast-card .podcast-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.podcast-card .podcast-thumb .thumb-name {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}

.podcast-card .podcast-thumb .thumb-name span {
  font-weight: 300;
}

.podcast-card .podcast-thumb .thumb-label {
  font-family: var(--font-sans);
  font-size: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.podcast-card .podcast-info {
  flex: 1;
}

.podcast-card .card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.podcast-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.podcast-card .card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.podcast-card .podcast-duration {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.podcast-card .play-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--gray-500);
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.podcast-card .play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--gray-500);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  margin-left: 1px;
}

/* --- Podcast Branding Badge --- */
.podcast-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.podcast-brand-logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.podcast-brand-logo .brand-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}

.podcast-brand-logo .brand-name span {
  font-weight: 300;
}

.podcast-brand-logo .brand-label {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

.podcast-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.podcast-brand-meta .brand-series {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

.podcast-brand-meta .brand-tagline {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* --- Podcast Detail Player --- */
.podcast-player {
  background: var(--gray-100);
  padding: 2rem;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcast-player audio {
  width: 100%;
}

/* --- Blog Post / Article Detail --- */
.article-header {
  text-align: center;
  padding: 5rem 0 3rem;
  max-width: var(--content-width);
  margin: 0 auto;
}

.article-header .card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.article-header .card-category {
  font-weight: 600;
  color: var(--black);
}

.article-header h1 {
  margin-bottom: 1.5rem;
}

.article-header .article-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.article-hero-image {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  overflow: hidden;
  background: var(--gray-100);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-hero-image img[src*="OD-Logo"] {
  object-fit: contain;
  padding: 2rem 4rem;
}

.article-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  margin: 2rem 0 0.75rem;
}

.article-content p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-900);
}

.article-content blockquote {
  border-left: 3px solid var(--black);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-700);
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content img {
  margin: 2rem 0;
}

/* Article Footer */
.article-footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid var(--gray-100);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  transition: all var(--transition);
}

.tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  opacity: 1;
}

/* Share Bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-bar span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.share-bar a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.share-bar a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  opacity: 1;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  opacity: 1;
}

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 4rem 0;
}

.about-image {
  background: var(--gray-100);
  overflow: hidden;
}

.about-image img {
  width: 150px;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Contact Form --- */
.contact-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 4rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  outline: none;
  background: transparent;
  color: var(--dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Kontaktformular: Datei-Feld, Hinweistext, Consent */
.form-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.contact-form input[type="file"] {
  font-size: 0.9rem;
  color: var(--dark);
  padding: 0.4rem 0;
}
.form-consent .consent-label a {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}

.btn:hover {
  background: transparent;
  color: var(--black);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Podcast Banner --- */
.podcast-banner {
  background: var(--black);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.podcast-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.podcast-banner-inner:hover {
  opacity: 0.9;
}

.podcast-banner-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.podcast-banner-content {
  flex: 1;
}

.podcast-banner-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.podcast-banner-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.podcast-banner-content p {
  font-size: 1rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.5;
}

.podcast-banner-cta {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.podcast-banner-inner:hover .podcast-banner-cta {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .podcast-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .podcast-banner-content h2 {
    font-size: 1.35rem;
  }

  .podcast-banner-cta {
    align-self: center;
  }
}

/* --- Newsletter Banner --- */
.newsletter-banner {
  background: var(--black);
  padding: 3rem 0;
  margin: 4rem 0 0;
}

.newsletter-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.newsletter-banner-inner:hover {
  opacity: 0.9;
}

.newsletter-banner-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.newsletter-banner-content {
  flex: 1;
}

.newsletter-banner-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.newsletter-banner-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.newsletter-banner-content p {
  font-size: 1rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.5;
}

.newsletter-banner-cta {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.newsletter-banner-inner:hover .newsletter-banner-cta {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .newsletter-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .newsletter-banner-content h2 {
    font-size: 1.35rem;
  }

  .newsletter-banner-cta {
    align-self: center;
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: var(--gray-500);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer-linkedin {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.footer-linkedin:hover {
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.footer-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--gray-900);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.footer-social a:hover {
  color: var(--white);
  opacity: 1;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
}

.legal-content p {
  font-size: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* --- Filter Bar & Archive Dropdown --- */
.filter-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-bar .article-tags {
  flex: 1;
  margin-bottom: 0;
}

.archive-dropdown {
  position: relative;
  flex-shrink: 0;
}

.archive-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.archive-toggle:hover {
  background: transparent;
  color: var(--black);
}

.archive-toggle[aria-expanded="true"] {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.archive-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.archive-toggle svg {
  transition: transform var(--transition);
}

.archive-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}

.archive-list.open {
  display: block;
}

.archive-list li {
  padding: 0.625rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}

.archive-list li:hover {
  background: var(--gray-100);
  color: var(--black);
}

.archive-list li.active {
  background: var(--black);
  color: var(--white);
}

.archive-list li.active .archive-count {
  color: var(--gray-500);
}

.archive-count {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 600;
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
  }

  .archive-list {
    right: auto;
    left: 0;
  }
}

/* --- Loading / Skeleton --- */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, #e8e8e8 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 72px);
    background: var(--gray-100);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--gray-900);
  }

  /* Submenu im Mobile-Menue: als flache, eingerueckte Liste */
  .nav-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-caret { display: none; }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    min-width: 0;
  }

  .nav-submenu a {
    padding: 0;
    font-size: 1rem;
    background: transparent;
    color: var(--gray-700);
  }

  .nav-submenu a:hover,
  .nav-submenu a.active {
    background: transparent;
    color: var(--black);
  }

  .nav-search svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .podcast-card {
    flex-direction: column;
  }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* ============================================
   olafdunkel.com · Integration-Extras
   Stile fuer /konto/, /webinare/, /downloads/, /admin/, /news/admin/,
   /podcasts/admin/. An style.css angehaengt; nutzt dieselben Variablen.
   ============================================ */

/* --- Accessibility: Skip-Link nur bei Fokus sichtbar ------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 0.85rem;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--white);
}

/* --- Buttons --------------------------------------------------------- */
.btn.primary,
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn.primary:hover,
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.btn.btn-secondary,
.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-secondary:hover { background: var(--gray-100); }

/* --- Nav-Toggle / CTA / Mobile -------------------------------------- */
.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--black);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle-icon, .nav-toggle-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--gray-100);
  }
  .nav-links.is-open { display: flex; }
}

/* --- Notices --------------------------------------------------------- */
.notice {
  border: 1px solid var(--gray-300);
  background: var(--gray-100);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  border-left: 4px solid var(--gray-500);
}
.notice.ok   { border-left-color: #2e7d32; background: #f1f8f4; }
.notice.warn { border-left-color: #c62828; background: #fff3f3; color: var(--gray-900); }

/* --- Member-Bar (eingeloggte User) ----------------------------------- */
.member-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
}
.member-bar .container { display: flex; justify-content: space-between; gap: 1rem; }
.member-bar a { color: var(--gray-700); text-decoration: underline; }
.member-bar a:hover { color: var(--black); }

/* --- Cards / Grids --------------------------------------------------- */
.cards-grid,
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.webinar-card,
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  transition: var(--transition);
}
.webinar-card:hover,
.card:hover { border-color: var(--gray-500); }
.webinar-card h3 { font-size: 1.15rem; margin: 0.5rem 0; }
.webinar-card h3 a { color: var(--black); text-decoration: none; }
.webinar-card h3 a:hover { color: var(--gray-700); }
.cluster-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
}
.card-subtitle {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin: 0.25rem 0 0.5rem;
}
.card-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.6rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* --- Lead-Paragraph -------------------------------------------------- */
.lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Forms (Konto-Bereich) ------------------------------------------ */
form label {
  display: block;
  margin: 1rem 0 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="search"],
form textarea,
form select {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-300);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: 0;
  border-color: var(--black);
}
form label > input[type="checkbox"] {
  width: auto;
  margin-right: 0.4rem;
}

/* --- Variant-Aliase fuer alte Klassen aus DownloadsOD/Webinarregister */
.btn-primary   { /* siehe oben */ }
.btn-secondary { /* siehe oben */ }

/* --- Mobile-Nav: Scroll-Fix
       Vereinheitlichtes Vollbild-Overlay (fixed, top:72px, bottom:0) fuer beide
       Header-Varianten. display:block + overflow-y:auto vermeidet die
       Flex-Shrink-Falle (Items kollabieren bei langer Liste). ID-scoped, damit
       die hoehere Spezifitaet (1,1,0) gegen die alten Klassen-only-Regeln
       (0,1,0 / 0,2,0) gewinnt. */
@media (max-width: 768px) {
  #navLinks.open,
  #primary-nav.is-open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--gray-100);
    padding: 1.5rem 1.25rem 3rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 99;
  }

  #navLinks.open a,
  #primary-nav.is-open a {
    display: block;
    padding: .85rem 0;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: var(--gray-900);
  }

  #navLinks.open a:last-child,
  #primary-nav.is-open a:last-child {
    border-bottom: 0;
  }

  /* PHP-Variante hat hellen Hintergrund (white statt gray-100). */
  #primary-nav.is-open {
    background: var(--white);
  }
}

/* ==========================================================================
   Barrierefreiheit (Phase 4, 19.07.2026)
   BFSG-relevante Basisverbesserungen - rein additiv, kein Layout-Eingriff.
   ========================================================================== */

/* Sichtbarer Fokus-Ring fuer Tastaturbedienung (nur bei Keyboard-Fokus, nicht
   bei Mausklick - dank :focus-visible). Erfuellt WCAG 2.4.7 (Focus Visible). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #1a6ee0;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Reduzierte Bewegung respektieren (WCAG 2.3.3 / vestibulaere Beschwerden).
   Schaltet Smooth-Scroll und Transitions fuer entsprechend eingestellte
   Nutzer weitgehend ab. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   DARK THEME (Design D) — 19.07.2026
   Schwarzer Hintergrund, weisse Schrift; nur der Header bleibt
   weiss. Als Override am Dateiende: der Header (.site-header und
   Kinder) wird bewusst NICHT angefasst und behaelt dunkle Schrift
   auf weissem Grund.
   ============================================================ */
:root{
  --d-bg:#0a0a0a; --d-surface:#161616; --d-elevated:#1c1c1c;
  --d-text:#e7e4de; --d-heading:#ffffff; --d-muted:#a29d94; --d-border:#2a2a2a;
}

/* Grundflaechen & Text */
body{background:var(--d-bg);color:var(--d-text)}
h1,h2,h3,h4{color:var(--d-heading)}
p{color:var(--d-muted)}

/* Header bleibt weiss und deckend (kein Durchscheinen der dunklen Seite) */
.site-header{background:#fff}

/* Logo (Design D): doppelt so gross, "Dunkel" fett */
.site-header .site-logo{font-size:2.1rem;font-weight:400;line-height:1}
.site-logo span{font-weight:800}
/* Navigation etwas groesser, aber kleiner als das Logo */
.site-header .nav-links a{font-size:1rem}
/* Nav-CTA (Newsletter) abgerundet */
.nav-cta{border-radius:8px}

/* Dropdown gehoert optisch zum weissen Header -> hell belassen (Standardregeln greifen) */

/* Hero / Sektionen */
.hero .subtitle{color:var(--d-muted)}
.section-header{border-bottom-color:var(--d-border)}
.section-header h2,.section-header a{color:var(--d-muted)}
.section-header a:hover{color:var(--d-heading)}

/* Karten & Aufmacher */
.article-card .card-image,.featured-article .card-image,
.article-hero-image,.about-image,.podcast-player{background:var(--d-surface)}
.article-card .card-category,.featured-article .card-category,
.article-header .card-category{color:var(--d-heading)}
.article-card .card-excerpt,.featured-article .card-excerpt{color:var(--d-muted)}
.featured-article{border-bottom-color:var(--d-border)}
.card-meta,.article-card .card-meta,.featured-article .card-meta{color:var(--d-muted)}

/* Podcast-Karten */
.podcast-card{border-color:var(--d-border)}
.podcast-card:hover{border-color:#3a3a3a}
.podcast-card .card-excerpt{color:var(--d-muted)}

/* Feature-Baender: als leicht erhoehte Flaeche mit Kontur sichtbar machen */
.podcast-banner,.newsletter-banner{
  background:var(--d-elevated);
  border-top:1px solid var(--d-border);
  border-bottom:1px solid var(--d-border);
}
.podcast-banner-label,.newsletter-banner-label,
.podcast-banner-content p,.newsletter-banner-content p{color:var(--d-muted)}

/* Blogartikel */
.article-header .article-subtitle{color:var(--d-muted)}
.article-content p,.article-content li{color:var(--d-text)}
.article-content blockquote{border-left-color:#fff;color:var(--d-muted)}
.article-footer{border-top-color:var(--d-border)}

/* Legal-Seiten */
.legal-content li{color:var(--d-muted)}

/* Tags / Share / Pagination: helle Umrandung, Hover invertiert zu hell */
.tag,.share-bar a,.pagination a,.pagination span{border-color:var(--d-border);color:var(--d-muted)}
.tag:hover,.share-bar a:hover,.pagination a:hover,.pagination .current{
  background:#fff;color:#0a0a0a;border-color:#fff
}

/* Formular */
.form-group label{color:var(--d-muted)}
.form-group input,.form-group textarea{color:var(--d-text);border-bottom-color:var(--d-border)}
.form-group input:focus,.form-group textarea:focus{border-color:#fff}

/* Kontaktformular: die Eingabefelder haben (aus der globalen form-Regel) einen
   weissen Hintergrund. Der Dark-Theme-Override faerbte die Schrift hell -> weiss
   auf weiss, Eingabe unsichtbar. Daher hier gezielt dunkle, lesbare Schrift.
   Selektor spezifisch genug (0,2,1), um die weisse Feld-Grundregel zu schlagen. */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="search"],
.contact-form textarea{
  background:#fff;
  color:#0a0a0a;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{color:var(--gray-500)}
.form-hint{color:var(--d-muted)}
.form-consent .consent-label{color:var(--d-text)}
.contact-form input[type="file"]{color:var(--d-text)}

/* Primaerbutton hell auf dunklem Grund, abgerundet */
.btn{background:#fff;color:#0a0a0a;border-color:#fff;border-radius:8px}
.btn:hover{background:transparent;color:#fff}
.btn-outline{color:#fff}
.btn-outline:hover{background:#fff;color:#0a0a0a}
.archive-toggle{background:transparent;color:var(--d-text);border-color:var(--d-border);border-radius:8px}
.archive-toggle:hover{background:#fff;color:#0a0a0a}
.newsletter-banner-cta,.podcast-banner-cta{border-radius:999px}

/* Fusszeile: bereits dunkel — nur deutliche weisse Trennlinie oben
   (breiter als die 1px-Linien im Content) */
.site-footer{border-top:3px solid #fff}

/* Filter-/Archiv-Dropdownflaechen dunkel */
.archive-dropdown .archive-list,.nav-submenu{}

/* Inline-gestylte Info-/Summary-Boxen in Blogartikeln (background:var(--gray-100),
   border-left:var(--black)) auf Dunkel umstellen. !important schlaegt die
   Inline-Styles (die kein !important tragen). */
.article-summary,
[style*="background:var(--gray-100"],
[style*="background: var(--gray-100"]{
  background:var(--d-surface)!important;
  border-left-color:#fff!important;
}

/* News-Sternebewertungen (inline color:#111) im Dunkel-Theme sichtbar machen */
[style*="color:#111; letter-spacing"]{color:#f0ede7!important}

/* Hartcodierte Inline-Textfarben aus dem hellen Theme im Content aufhellen.
   Diese Hex-Werte kommen nirgends als Hintergrund vor (geprueft), daher ist
   der Attributselektor gefahrlos. Hierarchie bleibt erhalten. */
main [style*="color:#111"]{color:#f0ede7!important}
main [style*="color:#444"]{color:#d4d0c8!important}
main [style*="color:#666"]{color:#aca79e!important}

/* Podcast-Markenzeile und Logo-Kaesten im Dunkel-Theme */
.podcast-brand-meta .brand-series{color:var(--d-heading)}
.podcast-brand-logo,.podcast-card .podcast-thumb{border:1px solid var(--d-border)}

/* Ueberschriften-Schriftart wie im Prototyp D: Newsreader (Serif).
   Fliesstext/Artikeltext bleibt unveraendert (Source Serif 4 / Inter). */
h1,h2,h3,h4{font-family:'Newsreader',Georgia,serif;font-weight:600}
.hero h1,.article-header h1{font-weight:500}
/* Kleine Uppercase-Label-Ueberschriften bleiben in der Sans-Schrift */
.section-header h2{font-family:var(--font-sans)}

/* Hero linksbuendig ansetzen (wie im Prototyp) */
.hero{text-align:left}
.hero .subtitle{margin-left:0}

/* Abschnitts-Trennlinien entfernen (19.07.2026). Ausgenommen: die weisse
   Trennlinie zwischen Content und Footer (.site-footer border-top bleibt).
   Karten-Rahmen (Cluster-/Formate-Kacheln) bleiben ebenfalls erhalten. */
.section-header{border-bottom:0;padding-bottom:0;margin-bottom:1rem}
.featured-article{border-bottom:0}
.podcast-banner,.newsletter-banner{border-top:0;border-bottom:0}
.article-footer{border-top:0}
/* Inline-Trennlinien oben auf Themen-/Formate-Sektionen */
[style*="border-top:2px solid var(--gray-300"],
[style*="border-top: 2px solid var(--gray-300"]{border-top:0!important}

/* ============================================================
   Design-Feinschliff (20.07.2026)
   1) Abschnittsueberschriften ruecken naeher an den Inhalt
      (siehe .section-header margin-bottom oben)
   2) Engere Abstaende zwischen den Startseiten-Abschnitten
   3) Kachel-Rahmen (Schwerpunkte/Formate) via Inline-Style auf 1px
   4+5) Mobile/PWA: alle Ueberschriften groesser
   ============================================================ */

/* 2) Abschnitts-Abstaende enger */
.hero{padding-bottom:2.5rem}

/* Hero-Titel (Startseite) ca. 4 Punkte groesser; hero-minimal (Unterseiten)
   bleibt unveraendert */
.hero:not(.hero-minimal) h1{font-size:clamp(2.3rem,5.5vw,3.7rem)}
.featured-article{margin-bottom:1.5rem;padding-bottom:1rem}
.podcast-banner{margin-bottom:1.5rem}
.newsletter-banner{margin-top:2rem}

/* 3) Falls Kachel-Rahmen noch inline mit 2px gesetzt sind: auf 1px daempfen */
[style*="border:2px solid var(--gray-300"],
[style*="border: 2px solid var(--gray-300"]{border-width:1px!important}

/* 4+5) Mobile/PWA: Ueberschriften deutlich groesser */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.4rem, 8.5vw, 3.2rem); }
  .hero:not(.hero-minimal) h1 { font-size: clamp(2.65rem, 9.5vw, 3.45rem); }
  h2 { font-size: clamp(1.95rem, 6.5vw, 2.55rem); }
  h3 { font-size: clamp(1.6rem, 5.5vw, 1.95rem); }
  h4 { font-size: 1.4rem; }

  .featured-article h2 { font-size: clamp(2.05rem, 6.5vw, 2.55rem); }
  .podcast-banner-content h2,
  .newsletter-banner-content h2 { font-size: 1.75rem; }

  /* Kachel-Titel (Schwerpunkte/Formate) tragen font-size inline -> mobil anheben */
  h3[style*="font-size:1.4rem"] { font-size: 1.6rem !important; }
}
