.ogx-gallery {
  margin-bottom: 2rem;
}

.ogx-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.ogx-gallery__card {
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease-in-out;
}

.ogx-gallery__card:hover {
  transform: scale(1.03);
}

.ogx-gallery__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ogx-gallery__image {
  width: 100%;
  height: auto;
  display: block;
}

.ogx-gallery__title {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.ogx-gallery__link,
.ogx-gallery__link:visited {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ogx-gallery__link:hover {
  text-decoration: none;
}
