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


body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 1rem;
}


.post {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
}


.post-header {
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.post-meta {
  font-size: 0.9rem;
  color: #666;
}


.post-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

.post-image figcaption {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-bottom: 1.5rem;
}


.post-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.post-content a {
  color: #0066cc;
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #ccc;
  color: #555;
  font-style: italic;
}


.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  background-color: #fafafa;
}

.previous-posts h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.previous-posts ul {
  list-style: none;
  padding-left: 0;
}

.previous-posts li {
  margin-bottom: 0.5rem;
}

.previous-posts a {
  text-decoration: none;
  color: #0056b3;
}

.previous-posts a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  .post {
    padding: 1rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-content p {
    font-size: 1rem;
  }

  .post-content h2 {
    font-size: 1.4rem;
  }

  .previous-posts h3 {
    font-size: 1rem;
  }

  .post-footer {
    font-size: 0.9rem;
  }
}

.article-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.article-list li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.article-list a {
  color: #0056b3;
  text-decoration: none;
}

.article-list a:hover {
  text-decoration: underline;
}

/* SOCIAL SECTION */
.social-links {
  margin-top: 2rem;
  text-align: center;
}

.social-links p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.social-links ul {
  list-style: none;
  padding: 0;
}

.social-links li {
  display: inline-block;
  margin: 0 0.5rem;
}

.social-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #0066cc;
}
.toggle-button {
  background-color: #f0f0f0;
  color: #333;
  border: none;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.toggle-button:hover {
  background-color: #e0e0e0;
  color: #000;
}



