* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #eef4f7;
  /* leichter, frischer Hintergrund – passt zu maritimen Akzenten */
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #1e2a2f;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.article-content img {
  border-radius: 20px;
}

/* ===== HEADER mit Logo in den Farben #007cbc & #62ced0 ===== */
.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 14px rgba(0, 124, 188, 0.08), 0 1px 0 rgba(0, 124, 188, 0.1);
  border-bottom: 2px solid #62ced0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.header-container a {
  display: flex;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.logo-area:hover {
  transform: scale(1.01);
}
.logo-icon {
  background: #007cbc;
  /* Hauptfarbe */
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: system-ui, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 124, 188, 0.2);
  transition: all 0.2s;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
  color: #1a3b4f;
}
.logo-text span {
  font-weight: 300;
  color: #007cbc;
  border-bottom: 2px solid #62ced0;
  padding-bottom: 2px;
}
.header-badge {
  background: #62ced022;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #007cbc;
  font-weight: 500;
  border: 1px solid #62ced0;
  backdrop-filter: blur(2px);
}
@media (max-width: 650px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem 1rem;
  }
  .logo-text {
    font-size: 1.3rem;
  }
}

/* Hauptcontainer für 3-Spalten-Layout (Sidebar - Content - Sidebar) */
.layout-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 2rem;
  position: relative;
}

/* Beide Sidebars: sticky, Bild + WERBUNG-Label */
.sidebar {
  flex: 0 0 220px;
  position: sticky;
  top: 6rem;
  /* unterhalb des Headers kleben */
  align-self: flex-start;
  text-align: center;
}

.sidebar-left {
  margin-right: 0;
}
.sidebar-right {
  margin-left: 0;
}

.ad-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
}
.ad-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #4f6f8a;
  text-transform: uppercase;
  background: #eef2f5;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-family: 'Arial', sans-serif;
  border: 0.5px solid #cbdbe0;
}
.sidebar img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 124, 188, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s;
  border: 1px solid #dce5ec;
}
.sidebar img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 26px rgba(0, 124, 188, 0.2);
}

/* Hauptartikel: elegant und hell */
.article-main {
  flex: 1;
  max-width: 780px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2.8rem;
  transition: all 0.2s;
  border: 1px solid #e2edf2;
}
.article-content {
  font-size: 1.05rem;
  color: #1f3a41;
}
.article-content p {
  margin-bottom: 1.4rem;
  text-align: justify;
}
.article-content h1 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border-left: 5px solid #007cbc;
  padding-left: 1rem;
  color: #1a4c63;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.3;
}

@media (max-width: 1000px) {
  .layout-container {
    gap: 1rem;
    padding: 0 1.2rem;
  }
  .sidebar {
    flex: 0 0 130px;
  }
  .article-main {
    padding: 1.8rem;
  }
}

@media (max-width: 780px) {
  .layout-container {
    flex-direction: column;
  }
  .sidebar {
    position: relative;
    top: 0;
    align-self: center;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    order: 1;
  }
  .sidebar-left,
  .sidebar-right {
    margin: 0;
  }
  .article-main {
    order: 2;
    max-width: 100%;
    margin: 0 0 1rem;
  }
  .sidebar img {
    max-width: 140px;
  }
    .article-content h1 {
      font-size: 1.4rem;
    }
}

@media (max-width: 550px) {
  .article-main {
    padding: 1.4rem;
  }
  .article-content p {
    font-size: 1rem;
  }
    .sidebar {
      display: none;
    }
}

/* Footer Design mit Farbakzenten (#007cbc / #62ced0) */
.footer {
  background: #132e3b;
  color: #e7edf0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  margin-top: 3rem;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 4px solid #62ced0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-contact {
  flex: 2;
  min-width: 240px;
}
.footer-contact h4 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #62ced0;
}
.footer-contact p {
  margin: 0.35rem 0;
  line-height: 1.4;
  font-size: 0.9rem;
}
.footer-contact a {
  color: #9acddb;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #62ced0;
  text-decoration: underline;
}
.footer-disclaimer {
  flex: 3;
  min-width: 280px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #cbdbe2;
  border-left: 1px solid #2e5f6b;
  padding-left: 1.5rem;
}
.footer-disclaimer p {
  margin-bottom: 0.4rem;
}
.footer-links {
  flex: 1;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: #c7e2ea;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  border-bottom: 1px dotted #39828f;
  display: inline-block;
  width: fit-content;
}
.footer-links a:hover {
  color: #62ced0;
  border-bottom-color: #62ced0;
}
.copyright {
  text-align: center;
  margin-top: 1.8rem;
  padding-top: 1rem;
  font-size: 0.7rem;
  color: #8dadb5;
  border-top: 1px solid #2b5b64;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* kleine Akzente für Links im Artikel (optional, aber dekorativ) */
a {
  color: #007cbc;
}
button,
.logo-area {
  cursor: pointer;
}
.docs {
  word-break: break-word;
}
.docs ul {
  padding-left: 20px;
}
.docs p {
  text-align: start;
}