/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Georgia&display=swap');
 
/* === BASE STYLES === */
body {
  background-color: #0d1526;
  color: #e9e9e9;
  font-family: 'Georgia', serif;
  margin: 0;
}

/* === LAYOUT & CONTENT === */
.container {
  max-width: 740px;
  margin: 2rem auto;
  padding: 1rem 2rem 5rem;
}

h1 {
  font-family: 'Cinzel', serif;
  color: #9fc5ff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.3rem;
}

.meta {
  text-align: center;
  color: #6f8ab8;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.cover-image {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-body {
  line-height: 1.7;
  font-size: 1.1rem;
}

.return-link {
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: #9fc5ff;
  font-family: 'Cinzel', serif;
  text-decoration: none;
}

a {
  color: #b7e3ff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

/* === FOOTER === */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #6f8ab8;
  background-color: #0d1526;
  border-top: 1px solid #142544;
}
