body {
  font-family: 'Arial', 'sans-serif', 'Segoe UI';
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

header {
  background-color: #094067;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

header nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

header nav ul li {
  display: inline;
  margin: 25px;
}

header nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 20px;
}

/* 🔄 Horizontal Scroll Styling */
.post-gallery {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
}

.post-gallery::-webkit-scrollbar {
  height: 5px;
}

.post-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

.post-card {
  flex: 0 0 250px; /* Fixed width cards */
  background: white;
  border-radius: 5px;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  scroll-snap-align: start;
}

.post-card h2 {
  margin-top: 0;
  color: #094067;
}

.post-card p {
  color: #444;
  line-height: 1.5;
}

.p1 {
      width: 250px;
      height: 138px;
      border-radius: 5px;
      object-fit: cover;
}

.post-card a {
  margin-top: 10px;
  color: #ef4565;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

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

footer {
  text-align: center;
  padding: 0.05px 0;
  background-color: #094067;
  color: white;
}