/* 基本 Jetpack Tiled Gallery 支援 */
.tiled-gallery__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tiled-gallery__row {
  display: flex;
  width: 100%;
  gap: 8px;
}

.tiled-gallery__col {
  flex: 1 0 50%;
  box-sizing: border-box;
}

.tiled-gallery__item {
  position: relative;
  overflow: hidden;
}

.tiled-gallery__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}