.old-gallery {
  text-align: center;
  margin: 60px auto;
  max-width: 1200px;
}
.old-gallery-title {
  font-size: 1.6rem;
  color: #D4AF37; /* ทองพรีเมียม */
  margin-bottom: 24px;
  font-weight: 600;
}

.old-gallery-grid {
  display: grid;
  gap: 20px;
}
/* Desktop: 4 คอลัมน์ */
.old-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.old-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: sepia(10%) contrast(95%) brightness(98%);
  transition: transform 0.3s ease;
}

.old-gallery-item img:hover {
  transform: scale(1.02);
}

.old-caption {
  margin-top: 10px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #b08a2e; /* ทองเข้มกว่าเดิม */
}
.old-caption::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: #b08a2e; /* ทองเข้ม */
  margin: 6px auto 0;
  opacity: 0.7;
}
.old-info-cute-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px 10px;
}
.old-info-header-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.old-info-header-title h2 {
  text-align: center;
  margin-top: 15px;
  color: #ffe9a3;
}
/* มือถือ */
/* Tablet: 2 คอลัมน์ */
@media (max-width: 1024px) {
  .old-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 คอลัมน์เต็มหน้าจอ */
@media (max-width: 768px) {
  .old-grid-4 {
    grid-template-columns: 1fr;
  }

  .old-gallery-item img {
    width: 100%;
    height: auto;
  }
}
