
.gallery-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #f8fafc, #e0f2fe);
  font-family: sans-serif;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.content-image-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .content-image-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.text-content .badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.text-content h2 {
  font-size: 2rem;
  color: #1e293b;
}
.text-content .highlight {
  color: #2563eb;
  font-weight: bold;
  font-size: 2.5rem;
}
.text-content p {
  color: #475569;
  max-width: 40ch;
  line-height: 1.6;
  margin: 1rem 0;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.2s;
}
.btn.primary {
  background: #2563eb;
  color: white;
}
.btn.primary:hover {
  background: #1d4ed8;
}
.btn.secondary {
  border: 1px solid #cbd5e1;
  color: #334155;
  background: transparent;
}
.btn.secondary:hover {
  background: #f1f5f9;
}
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.stats .number {
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: bold;
}
.image-content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.card.large {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.card.small {
  aspect-ratio: 1 / 1;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover img {
  transform: scale(1.05);
}
.card .overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.floating-icon {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 1.5rem;
}
