:root {
  --bg: #fffdf9;
  --surface: #ffffff;
  --surface-soft: #fff7ef;
  --surface-warm: #fdf0e3;

  --text: #2b2421;
  --muted: #766b65;

  --line: #eadfd6;
  --line-strong: #dccbc0;

  --red: #b94332;
  --red-dark: #963426;
  --terracotta: #c85b3d;
  --orange: #e58a3d;
  --yellow: #e8b84b;

  --container: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(91, 48, 30, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;

  background:
    linear-gradient(135deg, var(--red), var(--orange));

  color: #fff;
  font-size: 21px;
  box-shadow: 0 5px 15px rgba(185, 67, 50, .18);
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

#mainNav {
  display: flex;
  align-items: center;
  gap: 7px;
}

#mainNav a {
  padding: 9px 12px;
  border-radius: 9px;

  color: #5d514b;
  font-size: 14px;
  font-weight: 650;

  transition:
    background .2s ease,
    color .2s ease;
}

#mainNav a:hover {
  background: var(--surface-warm);
  color: var(--red);
}

#mainNav .admin-link {
  margin-left: 6px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--red);
}

#mainNav .admin-link:hover {
  border-color: var(--red);
  background: var(--surface-warm);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;

  border: 1px solid var(--line);
  border-radius: 11px;

  background: #fff;
  color: var(--text);

  font-size: 22px;
  cursor: pointer;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  overflow: hidden;

  padding: 105px 0 92px;

  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(232, 184, 75, .20),
      transparent 25%
    ),
    radial-gradient(
      circle at 8% 80%,
      rgba(229, 138, 61, .13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #fffaf3 0%,
      #fffdf9 55%,
      #fff5ea 100%
    );

  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;

  width: 210px;
  height: 210px;

  right: -70px;
  bottom: -110px;

  border-radius: 50%;

  border: 34px solid rgba(185, 67, 50, .08);
}

.hero::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--red) 0 45%,
      var(--orange) 45% 72%,
      var(--yellow) 72% 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 17px;

  color: var(--red);

  font-size: 11px;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero .eyebrow::before,
.eyebrow::before {
  content: "";

  width: 26px;
  height: 3px;

  border-radius: 5px;

  background:
    linear-gradient(
      90deg,
      var(--red),
      var(--orange)
    );
}

.hero h1 {
  max-width: 850px;

  margin: 0;

  color: #332722;

  font-size: clamp(48px, 7vw, 86px);
  line-height: .96;

  letter-spacing: -.055em;
}

.hero p {
  max-width: 680px;

  margin: 28px 0 0;

  color: var(--muted);
  font-size: 18px;
}

/* =========================================
   HERO BUTTON
========================================= */

.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 32px;
  padding: 12px 17px;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      var(--red),
      var(--terracotta)
    );

  color: #fff;

  font-size: 14px;
  font-weight: 800;

  box-shadow:
    0 8px 20px rgba(185, 67, 50, .18);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.button::after {
  content: "↓";

  width: 23px;
  height: 23px;

  display: inline-grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255,255,255,.16);

  font-size: 14px;
  line-height: 1;

  transition: transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 25px rgba(185, 67, 50, .23);
}

.button:hover::after {
  transform: translateY(2px);
}

/* =========================================
   EILMELDUNG
========================================= */

.breaking {
  position: relative;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;

  margin-top: 30px;
  margin-bottom: 15px;

  padding: 18px 21px;

  border: 1px solid #e8cfc4;
  border-left: 5px solid var(--red);

  border-radius: 14px;

  background:
    linear-gradient(
      100deg,
      #fff5ef,
      #fffaf5
    );

  box-shadow: 0 6px 20px rgba(91, 48, 30, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.breaking:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.breaking span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--red);

  font-size: 11px;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: .08em;
}

.breaking strong {
  min-width: 0;

  font-size: 15px;
  line-height: 1.35;
}

.breaking small {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--red);

  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}



.breaking:hover small::after {
  transform: translateX(3px);
  background: var(--red);
  color: #fff;
}

/* =========================================
   SECTIONS
========================================= */

.section {
  padding-top: 76px;
  padding-bottom: 20px;
}

.section h2 {
  margin: 0 0 27px;

  color: #342923;

  font-size: 34px;
  line-height: 1.1;

  letter-spacing: -.04em;
}

.section > .eyebrow {
  margin-bottom: 10px;
}

/* =========================================
   NEWS CARDS – MAGAZIN
========================================= */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow:
    0 5px 20px rgba(91, 48, 30, .045);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.post-card:hover {
  transform: translateY(-5px);

  border-color: #dec7ba;

  box-shadow:
    0 16px 35px rgba(91, 48, 30, .10);
}

.post-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-warm);
}

.post-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow)
  );
  opacity: .9;
}

.post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.035);
}

.post-body {
  padding: 21px 22px 23px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .06em;
}

.post-meta .tag {
  color: var(--red);
  font-weight: 850;
}

.post-body h3 {
  margin: 12px 0 9px;

  font-size: 21px;
  line-height: 1.18;

  letter-spacing: -.025em;
}

.post-body h3 a:hover {
  color: var(--red);
}

.post-body p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.55;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--red);

  font-size: 13px;
  font-weight: 850;
}



/* =========================================
   KATEGORIEN
========================================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.category-card {
  min-height: 70px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 17px 18px;

  border: 1px solid var(--line);
  border-radius: 13px;

  background: #fff;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.category-card strong {
  font-size: 14px;
}

.category-card:hover {
  transform: translateY(-2px);

  border-color: #d9b9aa;

  background: var(--surface-soft);
}

/* =========================================
   ABOUT
========================================= */

.about {
  padding-bottom: 85px;
}

.about p {
  max-width: 750px;

  margin: 0;

  color: var(--muted);
  font-size: 17px;
}

/* =========================================
   ARTIKEL
========================================= */

.article {
  background: #fff;
}

.article-hero {
  position: relative;
  overflow: hidden;
  background: var(--surface-warm);
}

.article-hero picture {
  display: block;
  width: min(100%, 1100px);
  height: min(520px, 58vw);
  min-height: 280px;
  margin: 0 auto;
  overflow: hidden;
}

.article-hero picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 6px;

  background:
    linear-gradient(
      90deg,
      var(--red),
      var(--orange),
      var(--yellow)
    );
}

.article-overlay {
  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  padding-top: 80px;
  padding-bottom: 45px;

  color: #fff;

  background:
    linear-gradient(
      transparent,
      rgba(35, 20, 15, .75)
    );
}

.article-overlay h1 {
  max-width: 900px;

  margin: 13px 0 0;

  font-size: clamp(36px, 6vw, 70px);
  line-height: 1;

  letter-spacing: -.045em;
}

.article-overlay .tag {
  display: inline-block;

  margin-right: 6px;
  padding: 5px 9px;

  border-radius: 7px;

  background: rgba(255,255,255,.9);
  color: var(--red);

  font-size: 11px;
  font-weight: 800;
}

.breaking-tag {
  background: var(--red) !important;
  color: #fff !important;
}

.hero-caption {
  padding-top: 10px;
  padding-bottom: 4px;

  color: var(--muted);

  font-size: 12px;
}

.hero-caption strong {
  margin-left: 8px;
  color: #5d504a;
}

.article-content {
  max-width: 820px;

  padding-top: 40px;
  padding-bottom: 80px;
}

.article-meta {
  margin-bottom: 28px;

  color: var(--muted);

  font-size: 13px;
}

.article-text {
  font-size: 18px;
  line-height: 1.75;
}

.article-text h2 {
  margin-top: 42px;

  font-size: 30px;
  line-height: 1.15;
}

.article-text h3 {
  margin-top: 32px;

  font-size: 23px;
}

.article-text a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: #e4b6a5;
  text-underline-offset: 3px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 45px;
}

.article-tags .tag {
  padding: 6px 10px;

  border-radius: 7px;

  background: var(--surface-warm);

  color: var(--red);

  font-size: 12px;
  font-weight: 750;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 32px;

  color: var(--red);

  font-size: 13px;
  font-weight: 800;
}

.back-link::before {
  content: "←";

  width: 24px;
  height: 24px;

  display: inline-grid;
  place-items: center;

  border-radius: 50%;

  background: #f5e5dc;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease;
}

.back-link:hover::before {
  transform: translateX(-3px);
  background: var(--red);
  color: #fff;
}

/* =========================================
   GALERIE
========================================= */

.gallery {
  margin-top: 55px;
}

.gallery h2 {
  font-size: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 13px;

  background: var(--surface-soft);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 12px;

  color: var(--muted);

  font-size: 12px;
}

/* =========================================
   FOOTER
========================================= */

footer {
  margin-top: 20px;

  background:
    linear-gradient(
      135deg,
      #5d3028,
      #71392d
    );

  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;

  padding-top: 45px;
  padding-bottom: 40px;
}

.footer-main h3,
.footer-main h4 {
  margin-top: 0;
}

.footer-main h3 {
  margin-bottom: 4px;
}

.footer-main p {
  margin: 0;

  color: #e7cbc0;
}

.footer-main span {
  color: #efdcd4;
}

.footer-main a {
  display: block;

  margin: 6px 0;

  color: #ead1c8;

  font-size: 14px;
}

.footer-main a:hover {
  color: #fff;
}

.brand-mini {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  margin-bottom: 12px;

  border-radius: 11px;

  background: rgba(255,255,255,.13);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);

  padding: 17px 0;

  color: #d8bdb3;

  font-size: 12px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* =========================================
   WILLKOMMEN / NOTICE
========================================= */

.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: grid;
  place-items: center;

  padding: 20px;

  background: rgba(50, 28, 20, .38);
  backdrop-filter: blur(5px);
}

.notice-overlay[hidden] {
  display: none;
}

.notice-card {
  position: relative;

  width: min(100%, 510px);

  padding: 34px;

  border: 1px solid #ead5c8;
  border-radius: 20px;

  background: #fffdf9;

  box-shadow:
    0 25px 70px rgba(60, 30, 20, .20);
}

.notice-label {
  margin-bottom: 8px;

  color: var(--red);

  font-size: 11px;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: .12em;
}

.notice-card h2 {
  margin: 0 0 12px;

  font-size: 30px;
  line-height: 1.1;
}

.notice-card p {
  color: var(--muted);
}

.notice-info {
  display: flex;
  gap: 12px;

  margin: 22px 0;

  padding: 14px;

  border-radius: 12px;

  background: var(--surface-warm);
}

.notice-info-icon {
  flex: 0 0 auto;
}

.notice-info-text {
  color: #66564e;
  font-size: 13px;
}

.notice-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 34px;
  height: 34px;

  border: 0;
  border-radius: 50%;

  background: #f5e9e1;
  color: #6b5047;

  font-size: 22px;

  cursor: pointer;
}

.notice-button {
  border: 0;
  border-radius: 10px;

  padding: 11px 16px;

  background: var(--red);
  color: #fff;

  font-weight: 800;

  cursor: pointer;
}

.notice-button:hover {
  background: var(--red-dark);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  #mainNav {
    position: absolute;

    top: 64px;
    left: 0;
    right: 0;

    display: none;

    padding: 10px 14px 16px;

    background: #fffdf9;

    border-bottom: 1px solid var(--line);

    box-shadow: 0 12px 25px rgba(60, 30, 20, .09);
  }

  #mainNav a {
    display: block;
    padding: 11px 8px;
    margin: 2px 0;
    border-radius: 9px;
  }

  #mainNav a:hover {
    background: #f3eee9;
  }

  #mainNav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }

  #mainNav a {
    padding: 13px;
  }

  #mainNav .admin-link {
    margin-left: 0;
    margin-top: 4px;
  }

  .hero {
    padding: 68px 0 62px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .hero p {
    font-size: 16px;
  }

  .breaking {
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
  }

  .breaking strong {
    grid-column: 1 / -1;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-overlay {
    padding-bottom: 28px;
  }

  .article-overlay h1 {
    font-size: clamp(32px, 9vw, 52px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {

  .hero {
    padding-top: 55px;
  }

  .breaking {
    display: block;
  }

  .breaking span,
  .breaking strong,
  .breaking small {
    display: block;
  }

  .breaking strong {
    margin: 8px 0;
  }

  .section {
    padding-top: 60px;
  }

  .section h2 {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .article-text {
    font-size: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 5px;
  }

  .notice-card {
    padding: 28px 22px;
  }
}


/* =========================================
   WEISSER INHALTSBEREICH + WARME KATEGORIEN
   gezielte Ergänzung
========================================= */

/* Homepage und Beiträge: sauberer weißer Grund */
body {
  background: #ffffff;
}

/* Textbereich eines Beitrags */
.article-content {
  background: #ffffff;
}

/* Der eigentliche Artikeltext bleibt komplett weiß */
.article-text {
  background: #ffffff;
}

/* Kategorien unter dem Artikel:
   warm, dezent und vom Textbereich getrennt */
.article-tags {
  margin-top: 42px;
  padding: 22px 24px;
  background: #fff4ec;
  border: 1px solid #f3d8c5;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* einzelne Kategorie */
.article-tags .tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  background: #ffffff;
  color: #a84224;
  border: 1px solid #edc5ae;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* dezenter warmer Akzent beim Darüberfahren */
.article-tags .tag:hover {
  background: #fff0e4;
  border-color: #e49a73;
  color: #8f321b;
}

/* Homepage-Abschnitte bleiben weiß */
main {
  background: #ffffff;
}

/* Kategorien auf der Startseite leicht warm absetzen */
#kategorien {
  background: #fff8f2;
  border-top: 1px solid #f3dfd1;
  border-bottom: 1px solid #f3dfd1;
}

/* Kategorien-Karten etwas wärmer */
#kategorien .category-card {
  background: #ffffff;
  border-color: #efd8c9;
}

#kategorien .category-card:hover {
  border-color: #df9a72;
  background: #fffaf6;
}

/* =========================================
   FEINER WARMER KATEGORIEN-AKZENT
========================================= */

/* Kein großer Kategorienblock */
.article-tags {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 38px;
}

/* Nur die einzelnen Kategorien sind leicht eingefärbt */
.article-tags .tag {
  background: #fff3e8;
  color: #a94b28;
  border: 1px solid #f0cdb8;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
}

.article-tags .tag:hover {
  background: #ffe8d8;
  border-color: #e7a47d;
  color: #8f351c;
}

/* Startseiten-Kategorien ebenfalls nur einzeln einfärben */
#kategorien {
  background: #ffffff;
  border-top: 0;
  border-bottom: 0;
}

#kategorien .category-card {
  background: #fff8f3;
  border-color: #efd8c9;
}

#kategorien .category-card:hover {
  background: #fff0e5;
  border-color: #e2a17c;
}


/* =========================================
   TITELBILD STARTSEITE
========================================= */

.featured-image {
  margin-top: 0;
  margin-bottom: 34px;
}

.featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

@media (max-width: 700px) {
  .featured-image img {
    max-height: 320px;
    border-radius: 13px;
  }
}


/* =========================================
   HERO – IMG_7712 ALS HINTERGRUNDBILD
========================================= */

.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(75, 25, 15, 0.78) 0%,
      rgba(75, 25, 15, 0.55) 48%,
      rgba(75, 25, 15, 0.25) 100%
    ),
    url("../images/IMG_7712.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #fff;
}

.hero .eyebrow {
  color: #ffd6a5;
}


/* =========================================================
   Blog nutzen & Änderungen
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e3e7ea;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(20, 30, 40, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(20, 30, 40, .10);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fbe9ea;
  font-size: 25px;
  margin-bottom: 18px;
}

.feature-card h2 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
  color: #65727e;
}

.feature-card-alert {
  border-color: #f0c7c9;
}

.feature-card-alert .feature-icon {
  background: #fde3e4;
}

.info-section {
  margin-top: 0;
}

.info-panel {
  background: linear-gradient(135deg, #fff, #f7f9fa);
  border: 1px solid #e1e6ea;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(20, 30, 40, .06);
}

.info-panel h2 {
  margin-top: 5px;
  margin-bottom: 12px;
}

.info-panel p {
  max-width: 760px;
  line-height: 1.7;
  color: #65727e;
}

.info-panel .button {
  display: inline-block;
  margin-top: 10px;
}

/* Changelog */

.changelog {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.changelog::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e1e5e8;
}

.change-entry {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

.change-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #d71920;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(20, 30, 40, .08);
}

.change-content {
  background: #fff;
  border: 1px solid #e2e7eb;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 8px 25px rgba(20, 30, 40, .06);
}

.change-entry-current .change-content {
  border-color: #e4b4b6;
  box-shadow: 0 10px 30px rgba(215, 25, 32, .08);
}

.change-date {
  display: inline-block;
  color: #d71920;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.change-content h2 {
  margin: 0 0 12px;
}

.change-content p {
  color: #65727e;
  line-height: 1.7;
}

.change-content ul {
  margin: 15px 0 0;
  padding-left: 22px;
  color: #65727e;
  line-height: 1.8;
}

/* Mobile */

@media (max-width: 700px) {

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 23px;
  }

  .info-panel {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .changelog::before {
    left: 22px;
  }

  .change-entry {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .change-marker {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .change-content {
    padding: 22px 20px;
  }

}

/* =========================================
   BILDER – RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .post-image {
    aspect-ratio: 16 / 9;
  }

  .article-hero picture {
    width: 100%;
    height: 58vw;
    min-height: 220px;
    max-height: 380px;
  }

  .article-hero picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }

}

/* Nutzungsbedingungen */
main > h1,
main > h2,
main > h3,
main > p,
main > ul,
main > ol {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

main > h1 {
  padding-top: 35px;
}

main > p,
main > ul,
main > ol {
  line-height: 1.7;
}

@media (max-width: 850px) {
  main > h1,
  main > h2,
  main > h3,
  main > p,
  main > ul,
  main > ol {
    width: min(calc(100% - 28px), var(--container));
  }
}

/* =========================================
   DESIGN-FEINSCHLIFF
========================================= */

/* Navigation */
#mainNav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

#mainNav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  border-radius: 9px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

#mainNav a:hover {
  background: #f3e9e3;
}

#mainNav .admin-link {
  margin-left: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

#mainNav .admin-link:hover {
  background: var(--red-dark);
  color: #fff;
}

/* Footer übersichtlicher */
.footer-main {
  gap: 40px;
}

.footer-main a {
  padding: 4px 0;
  margin: 2px 0;
  text-decoration: none;
}

.footer-main a:hover {
  text-decoration: underline;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 850px) {

  #mainNav {
    gap: 3px;
  }

  #mainNav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
  }

  #mainNav .admin-link {
    margin: 6px 0 0;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 35px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Keine zusätzlichen Pfeile */
.read-more:hover::before,


/* Schlichte Pfeile für Aktionslinks */
.read-more {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.read-more::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  transition: transform .18s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Navigation: niemals automatisch Pfeile anhängen */
#mainNav a::before,
#mainNav a::after {
  content: none !important;
  display: none !important;
}


/* Blog-nutzen-Karten: keine automatischen Zusatzpfeile */
.feature-card a::before,
.feature-card a::after {
  content: none !important;
  display: none !important;
}


/* Mobile-Menü: geschlossen / geöffnet */
@media (max-width: 850px) {
  #mainNav {
    display: none;
  }

  #mainNav.open {
    display: block;
  }
}

