/* Estilo para posts do blog - A Saga de Zephyrus */
:root {
  --tinta: #0a0e2e;
  --dourado: #C8963E;
  --laranja-cachecol: #d9873a;
  --papel: #F3F0E7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fraunces', Georgia, serif;
  background: var(--papel);
  color: var(--tinta);
  line-height: 1.7;
  padding: 20px;
}

.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header com navegação */
header {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10, 14, 46, 0.1);
}

.back-link {
  display: inline-block;
  color: var(--dourado);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--laranja-cachecol);
}

.back-link::before {
  content: '← ';
  margin-right: 4px;
}

/* Título do post */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--tinta);
  line-height: 1.2;
  margin: 30px 0 20px;
  font-variation-settings: 'opsz' 72;
}

/* Metadados */
.post-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: rgba(10, 14, 46, 0.6);
}

.post-date {
  font-weight: 400;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(200, 150, 62, 0.15);
  color: var(--dourado);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Conteúdo do post */
.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--tinta);
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content em {
  font-style: italic;
  color: var(--dourado);
}

.post-content strong {
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 14, 46, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(10, 14, 46, 0.5);
}

footer a {
  color: var(--dourado);
  text-decoration: none;
}

footer a:hover {
  color: var(--laranja-cachecol);
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .post-content {
    font-size: 1.05rem;
  }
  
  .container {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
