body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  max-width: 1000px;
  margin: 32px auto;
  color: #111
}

header {
  display: flex;
  align-items: center;
  gap: 16px
}

h1 {
  margin: 0;
  font-size: 28px
}

.hero {
  display: flex;
  gap: 16px;
  margin-top: 20px
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08)
}

section {
  margin-top: 20px
}

ul {
  line-height: 1.8
}

.meta {
  color: #666;
  font-size: 0.95rem
}

.cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: #0369a1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none
}

footer {
  margin-top: 40px;
  color: #666;
  font-size: 0.9rem
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.grid img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
  display: block;
}

.grid a:hover img {
  transform: scale(1.05);
}

/* Lightbox Styles */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

#lightbox.active {
  display: flex;
  opacity: 1;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#lightbox.active img {
  transform: scale(1);
}

@media(max-width:700px) {
  .grid {
    grid-template-columns: 1fr
  }
}
