/* =========================================================
   POSTS / ARTIGOS INDIVIDUAIS
   Extensões de .seo-text específicas para posts do blog.
   A regra base de .seo-text vive em style.css.
========================================================= */

.seo-text h2 {
  color: #1a1a1a;
  font-size: 30px;
  margin: 26px 0 10px;
}

.seo-text h3 {
  color: #1a1a1a;
  font-size: 23px;
  margin: 22px 0 8px;
}

.seo-text ul {
  margin: 10px 0 18px 22px;
}

.seo-text li {
  margin-bottom: 8px;
}

.post-cover {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 0 18px;
  text-align: center;
}

.post-cover img {
  width: 100%;
  max-width: 620px;
  max-height: 640px;
  aspect-ratio: 4/5;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 18%;
}

.post-meta {
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 10px;
}

.post-gallery-real {
  max-width: 900px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 20px;
}

.post-gallery-real img,
.seo-text img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 520px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 10px;
  background: var(--caixa-suave);
  display: block;
}

.seo-text img {
  max-width: 520px;
  height: auto;
  margin: 22px auto;
}

.real-quote {
  background: var(--caixa-clara);
  border-radius: 18px;
  padding: 24px;
  margin: 24px 0;
  color: #333;
  font-size: 17px;
  line-height: 1.75;
}

.real-quote strong {
  display: block;
  margin-top: 12px;
  color: #1a1a1a;
  font-size: 14px;
}

.post-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Galeria clicável dos posts */
.lightbox-gallery img {
  cursor: pointer;
}

@media(max-width: 768px) {
  .post-cover {
    max-width: 390px;
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .post-cover img {
    max-width: 390px;
    max-height: 500px;
    border-radius: 14px;
  }

  .seo-text h2 {
    font-size: 25px;
  }

  .seo-text h3 {
    font-size: 21px;
  }

  .post-gallery-real {
    grid-template-columns: repeat(2, 1fr);
    max-width: 430px;
    padding: 0 14px;
  }

  .real-quote {
    padding: 20px;
    font-size: 16px;
  }

  .post-actions {
    justify-content: center;
  }
}

@media(max-width: 420px) {
  .post-cover img,
  .seo-text img {
    max-height: 430px;
  }
}


