body {
  background-color: white;
}

.blog-list-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-list-item-link:hover .blog-list-item {
  box-shadow: 0 6px 24px rgba(47, 65, 63, 0.18);
  background-color: white;
  transform: translateY(-2px) scale(1.01);
}
/* blog/blog.css - Styles für alle Blogartikel und die Blogübersicht */

.main-content.blog-page {
  max-width: 900px;
  margin: 40px auto 60px auto;
  background-color: white;
  padding: 40px 32px 32px 32px;
}

.blog-title {
  font-size: 2.4em;
  margin-bottom: 0.2em;
  color: var(--default-highlight-color, #5f8482);
  text-align: center;
  font-weight: 700;
}

.blog-intro {
  text-align: center;
  color: var(--default-hover-color, #435151);
  margin-bottom: 2em;
  font-size: 1.15em;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list-item {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(47, 65, 63, 0.07);
  padding: 1.5em 3em 1.2em 3em;
  border: none;
  position: relative;
  overflow: hidden;
}
.blog-list-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2em;
}
.blog-list-item-link:last-child {
  margin-bottom: 0;
}

.blog-list-item:hover {
  box-shadow: 0 6px 24px rgba(47, 65, 63, 0.18);
  background: var(--default-background-color, #bedad9);
  transform: translateY(-2px) scale(1.01);
}

.blog-list-meta {
  font-size: 0.98em;
  color: var(--default-hover-color, #435151);
  margin-bottom: 0.5em;
}

.blog-list-date {
  font-weight: 400;
  letter-spacing: 0.03em;
}

.blog-list-teaser {
  font-size: 1.08em;
  color: var(--default-text-color2, #293131);
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  line-height: 1.5;
}

.blog-list-item:last-child {
  margin-bottom: 0;
}

.blog-link {
  text-decoration: none;
  color: var(--default-highlight-color, #5f8482);
  font-size: 1.25em;
  font-weight: 500;
  display: block;
  transition: color 0.2s;
}

.blog-link:hover .blog-list-title {
  color: var(--default-hover-color, #435151);
  text-decoration: underline;
}

.blog-list-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.blog-article {
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
  margin-bottom: 150px;
  background-color: transparent;
  padding: 100px 50px;
  font-size: 1.22em;
  line-height: 1.8;
  color: var(--default-text-color2, #293131);
  font-family: var(--default-font-family, "Heebo", sans-serif);
  box-sizing: border-box;
  text-align: left;
  overflow-x: hidden;
  max-width: 1096px;
}

.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4 {
  color: var(--default-text-color2, #293131);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.7em;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.blog-article h1 {
  font-size: 2.3em;
  margin-top: 0;
}

.blog-article h2 {
  font-size: 2em;
}

.blog-article h3 {
  font-size: 1.1em;
}

.blog-article p {
  margin: 1.5em 0;
  color: var(--default-text-color2, #293131);
}

.blog-article ul,
.blog-article ol {
  margin: 1.3em 0 1.3em 2.2em;
  padding: 0;
}

.blog-article li {
  margin-bottom: 0.5em;
}

.blog-article img {
  max-width: 90%;
  border-radius: 0;
  margin: 2.5em auto 2em auto;
  box-shadow: none;
  display: block;
  text-align: center;
}

.blog-article figure {
  margin: 2.5em 0 2em 0;
}

.blog-article figcaption {
  text-align: center;
  color: #888;
  font-size: 0.98em;
  margin-top: 0.5em;
}

.blog-article table {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  white-space: nowrap;
  box-sizing: border-box;
}

.blog-article thead,
.blog-article tbody,
.blog-article tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.blog-article th,
.blog-article td {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: left;
}

.blog-article th {
  background: #f7f7f7;
  color: #1a1a1a;
  font-weight: 600;
}

.blog-article blockquote {
  border-left: 4px solid var(--default-highlight-color, #5f8482);
  background: #eaf6f5;
  margin: 2em 0;
  padding: 1.1em 1.5em;
  color: var(--default-hover-color, #435151);
  font-style: italic;
}

.blog-article code {
  background: #f4f4f4;
  color: #c7254e;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.97em;
}

.blog-article pre {
  background: #f4f4f4;
  color: #333;
  padding: 14px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 2em 0;
}

.blog-article a {
  color: #0077cc;
  text-decoration: underline;
  transition: color 0.2s;
}

.blog-article a:hover {
  color: #00c6a7;
}

@media (max-width: 800px) {
  .main-content.blog-page {
    padding: 16px 4vw 16px 4vw;
    max-width: 100vw;
  }
  .blog-list-item-link {
    margin-bottom: 3vw;
  }
  .blog-list-item {
    padding: 1.2em 3vw 1em 3vw;
  }
  .blog-list-title {
    font-size: 1.1em;
  }
  .blog-list-teaser {
    font-size: 1em;
  }
  .blog-article {
    padding: 30px;
    margin: 24px 0 32px 0;
    max-width: 100vw;
    overflow-x: hidden;
    border-radius: 18px;
  }
  .blog-title {
    font-size: 2em;
  }
  .blog-intro {
    font-size: 1em;
  }
}
