/* ═══ SINGLE POST ═══ */
.petobje-post {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}
.post-header {
  padding: 60px 0 40px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.post-meta time {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--stone-light);
  letter-spacing: 0.5px;
}
.post-cat {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--terra-wash);
  padding: 3px 10px;
}
.post-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}
.post-excerpt {
  font-size: 19px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}

/* Hero image */
.post-hero {
  margin: 0 -48px 48px;
  overflow: hidden;
}
.post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.post-content {
  padding-bottom: 80px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
}
.post-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
}
.post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.post-content p {
  margin-bottom: 20px;
}
.post-content ul, .post-content ol {
  margin: 0 0 20px 24px;
}
.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.post-content strong {
  font-weight: 600;
  color: var(--charcoal);
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.post-content th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.post-content td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
}

/* FAQ section */
.faq-section {
  border-top: 2px solid var(--terra);
  margin-top: 48px;
  padding-top: 32px;
}
.faq-section h2 {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
}
.faq-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.faq-item p {
  margin: 0;
  color: var(--stone);
  font-size: 15px;
}

/* Related posts */
.related-posts {
  border-top: 1px solid rgba(0,0,0,0.06);
}
.related-posts .section-header {
  padding: 60px 48px 40px;
}
.related-posts .section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .petobje-post { padding: 0 24px; }
  .post-hero { margin: 0 -24px 32px; }
  .post-header { padding: 40px 0 24px; }
  .related-posts .section-header { padding: 40px 24px 24px; }
}
