/* single-post.css */

/* Container for the whole article */
.single-post-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-family: "Fira Sans", Arial, sans-serif;
  color: #333;
}

/* Meta info like author and date */
.single-post .post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.5rem;
}

/* Main post content */
.single-post .post-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Quote block */
.single-post blockquote {
  font-style: italic;
  border-left: 4px solid var(--primary-blue);
  padding-left: 1rem;
  color: #444;
  margin: 2rem 0;
}

/* Images inside post */
.single-post img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .single-post-container {
    padding: 0 1rem;
  }

  .vivere-button {
    width: 100%;
    text-align: center;
  }
}
