body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  color: #333;
}

header, footer {
  text-align: center;
  margin-bottom: 2rem;
}

header img {
  display: block;
  margin: 0 auto 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

a {
  color: #6f3d95;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
  margin-top: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}
.featured-image {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .post-list {
    list-style: none;
    padding: 0;
  }
  
  .post-list li {
    margin: 0.5rem 0;
  }
  
  .post-list a {
    color: #6f3d95;
    text-decoration: none;
  }
  
  .post-list a:hover {
    text-decoration: underline;
  }
  .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
  }
  
  .post-item img.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    margin-right: 25px;
  }
  
  .post-item .post-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
  }
  
  .post-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .post-item a:hover .post-title {
    text-decoration: underline;
  }
    
  article img { max-width: 100%; height: auto;}