/* --- Main Landing Page --- */
.site-main {
  padding: 40px 16px;
  background: #fafafa;
}

/* H1 center */
.hero-title h1 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1e2326;
}

/* Grid layout banner + posts */
.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Banner image */
.banner-img {
  width: 100%; 
  max-width: 100%; 
  height: auto; 
  border-radius: 12px; 
  object-fit: cover; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Recent posts */
.content-right {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.recent-title {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #c19f42;
  font-weight: 600;
}
.recent-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-posts li {
  margin-bottom: 10px;
}
.recent-posts a {
  color: #1e2326;
  text-decoration: none;
  font-weight: 500;
}
.recent-posts a:hover {
  color: #c19f42;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  .content-right {
    margin-top: 20px;
  }
}
