/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Playfair+Display&display=swap');

/* Base layout */
body {
  font-family: 'Playfair Display', serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.8;
  font-size: 18px;
  padding: 20px;
  margin: 0;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  color: #111;
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Post previews */
.post-preview {
  margin-bottom: 40px;
}

.post-preview img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  display: block;
}

.post-preview a {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
  display: inline-block;
}

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

/* Article layout */
article {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

article p, article ul, article ol {
  margin: 1em 0;
  font-size: 18px;
}

article ul {
  padding-left: 20px;
}

article img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

a {
  color: #007acc;
}

a:hover {
  text-decoration: underline;
}

/* Mobile-friendly tweaks */
@media (max-width: 600px) {
  body {
    font-size: 17px;
    padding: 15px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }
}
