/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5em;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #c00;
}

/* Header styles */
.site-header {
  background-color: #fff;
  border-bottom: 2px solid #1a1a1a;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-title {
  font-size: 3em;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.site-title a {
  color: #1a1a1a;
}

nav {
  margin-top: 20px;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
  padding: 5px 10px;
}

nav ul li a:hover {
  background-color: #f0f0f0;
}

/* Main content styles */
main {
  background-color: #fff;
  padding: 40px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.news-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.post-meta {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  font-size: 0.8em;
  margin-bottom: 10px;
}

.post {
  max-width: 800px;
  margin: 0 auto;
}

.post-content {
  font-size: 1.1em;
  line-height: 1.8;
}

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

/* Footer styles */
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  margin-right: 40px;
}

.footer-section:last-child {
  margin-right: 0;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style-type: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* Responsive design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.rss-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 3px;
  margin-top: 10px;
  display: inline-block;
}

.rss-link:hover {
  background-color: #e0e0e0;
}
