* {

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.post {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.date {
  color: #cfcfcf;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

button {
  margin-top: 15px;
  background: #9fd3ff;
  color: #111;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 30px;
  color: #d0d0d0;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 2rem;
  }

  nav a {
    display: inline-block;
    margin: 6px;
  }
}