/*
Theme Name: XWRITE child
Version: 1.0.0
Template: xwrite
*/
/* ===== サンプル画像ギャラリー ===== */

.sample-gallery {
  margin: 40px 0;
}

.sample-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 4px solid #ff4081;
  padding-left: 10px;
}

.sample-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr); /* SP：2列 */
}

@media (min-width: 768px) {
  .sample-grid {
    grid-template-columns: repeat(4, 1fr); /* PC：4列 */
  }
}

.sample-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform .2s ease;
}

.sample-item:hover img {
  transform: scale(1.03);
}