/* blog.css = Layout für Blog (Theme kommt aus theme.css) */

.blog-hero{
  background:
    radial-gradient(900px 450px at 70% 35%, rgba(130, 220, 255, .18), transparent 62%),
    linear-gradient(120deg, #06253a, #0b3a57 40%, #0a2f48);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}

.badge-chip{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-weight: 500;
}

/* Post tiles */
.post-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
  height: 100%;
}
.post-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .12);
}

.post-thumb{
  height: 170px;
  background: #0a2f48;
  background-size: cover;
  background-position: center;
}

.post-body{ padding: 16px; }
.post-meta{ color: #6b7486; font-size: .86rem; }
.post-title{ font-weight: 700; margin: 6px 0 8px; }
.post-excerpt{ color: #56627a; margin: 0; }

/* Tag styling = wie Website-Chips, aber kleiner */
.tag{
  display:inline-flex;
  align-items:center;
  padding:.25rem .55rem;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(11, 78, 121, .06);
  color:#123a5a;
  font-weight:500;
  font-size:.78rem;
}

/* Article */
.article{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.article img{ max-width: 100%; height: auto; border-radius: 16px; padding-bottom:1em;}
.article h1, .article h2{ font-weight: 700; color:#2b3650; padding-top:1em;}
.article h3{ font-weight: 500; color:#2b3650; padding-top:1em;}
.article p, .article li{ color: #2b3650;}

/* Admin cards */
.form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:18px;
  box-shadow: var(--shadow-soft);
}

/* Optional: gleiche Navbar-Schriftwirkung */
.navbar .nav-link{ font-weight: 700; color: #24324a; }
.navbar .nav-link:hover{ color: var(--brand); }