/* Styles for the individual post page */
.post-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(10, 0, 20, 0.8);
    border: 1px solid #4a007a;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(118, 0, 204, 0.5);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #e0c8ff;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

.post-title {
    margin-top: 0;
}

.post-meta {
    color: #aaa;
    font-style: italic;
    margin-bottom: 2rem;
}

.post-image-header {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.post-content p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.post-content blockquote {
    border-left: 3px solid #4a007a;
    padding-left: 1rem;
    margin-left: 0;
    font-style: italic;
    color: #ccc;
}
.post-image {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(118, 0, 204, 0.5);
  object-fit: contain;
}

#postTitleH1 {
  font-family: serif; /* Ou a fonte que você usa nos títulos */
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #e0c8ff;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #4a007a;
  padding-bottom: 1rem;
}

#postDate {
  font-family: sans-serif;
  color: #aaa;
  font-style: italic;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 2rem;
}