/* Pojedynczy wpis bloga (single.blade.php)
   Ładowany bezpośrednio (nie wymaga npm run build).
   Ciemna kolorystyka spójna z resztą strony, akcent #ffb900. */
figure.wp-block-video video {
    max-height: 529px;
}
ul.wp-block-list {
    list-style: inherit;
}

.blog-single {
  display: block;
  padding: 60px 0 80px;
}

@media (max-width: 767px) {
  .blog-single {
    padding: 32px 0 48px;
  }
}

/* Wąska kolumna artykułu */
.blog-single .ws-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Nagłówek wpisu */
.blog-single .ws-head {
  margin-bottom: 32px;
}

.blog-single .ws-title {
  color: #fff;
  margin: 0 0 14px;
}

.blog-single .ws-lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.blog-single .ws-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.blog-single .ws-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-single .ws-meta-item svg {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* Zdjęcie główne */
.blog-single .ws-hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-single .ws-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}

/* Treść wpisu */
.blog-single .ws-content h2,
.blog-single .ws-content h3,
.blog-single .ws-content h4 {
  color: #fff;
  margin: 36px 0 12px;
}

.blog-single .ws-content h2:first-child,
.blog-single .ws-content h3:first-child {
  margin-top: 0;
}

.blog-single .ws-content p {
  color: rgba(255, 255, 255, 0.7);
}

.blog-single .ws-content a {
  color: #ffb900;
}

.blog-single .ws-content ul,
.blog-single .ws-content ol {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 22px;
  margin-bottom: 15px;
}

.blog-single .ws-content li {
  margin-bottom: 6px;
}

.blog-single .ws-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Cytaty: żółty cudzysłów z lewej, źródło pod spodem */
.blog-single .ws-content blockquote {
  position: relative;
  margin: 28px 0;
  padding: 20px 24px 20px 64px;
  background: #ffffff08;
  border-radius: 10px;
}

.blog-single .ws-content blockquote::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: #ffb900;
}

.blog-single .ws-content blockquote p {
  color: rgba(255, 255, 255, 0.75);
}

.blog-single .ws-content blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Powiązane wpisy */
.blog-single .ws-related {
  margin-top: 72px;
}

.blog-single .ws-related-title {
  color: #fff;
  margin-bottom: 24px;
}
