/* ===== BLOG / AKTUALNOŚCI ===== */

.posts-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.posts-loading,
.posts-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 1.05rem;
}

.post-card {
  background: #fff;
  border: 1px solid #e8e8e3;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 36px 38px;
  margin-bottom: 28px;
  transition: box-shadow 0.3s ease;
}

.post-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.post-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.35;
}

.post-excerpt {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.post-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s;
}

.post-toggle:hover {
  color: var(--gold);
}

.post-toggle-icon {
  font-size: 0.85rem;
  transition: transform 0.2s;
}

/* Full post body */
.post-body {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.85;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  margin: 28px 0 12px;
}

.post-body h2 { font-size: 1.35rem; }
.post-body h3 { font-size: 1.15rem; }

.post-body p {
  margin-bottom: 16px;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }

.post-body li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.post-body strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.post-body a {
  color: var(--green-dark);
  text-decoration: underline;
}

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

.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 20px 0;
  padding: 8px 20px;
  background: var(--off-white);
  color: #555;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.post-body img {
  max-width: 100%;
  border-radius: 6px;
  margin: 16px 0;
}

/* Responsive */
@media (max-width: 600px) {
  .posts-container {
    padding: 30px 0 60px;
  }

  .post-card {
    padding: 24px 20px;
  }

  .post-title {
    font-size: 1.25rem;
  }
}
