/* Hide WP page title and kill theme top spacing on Europe page */
.page-id-88 .entry-title,
.page-id-88 .page-title,
.page-id-88 header.entry-header {
  display: none !important;
}
.page-id-88 .entry-content,
.page-id-88 .site-main,
.page-id-88 .content-area,
.page-id-88 .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.page-id-88 .entry-content-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Europe Gallery Grid */
.euro-gallery-wrap {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.euro-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.euro-gallery-grid .euro-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.euro-gallery-grid .euro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.euro-gallery-grid .euro-thumb:hover img {
  transform: scale(1.08);
}
.euro-shuffle-bar {
  text-align: center;
  margin: 1.5rem 0;
}
.euro-shuffle-btn {
  background: #2c5530;
  color: #f5e6c8;
  border: none;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.euro-shuffle-btn:hover {
  background: #3a7340;
}
.euro-photo-count {
  color: #999;
  font-size: 13px;
  margin-top: 8px;
  font-family: 'Lato', sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .euro-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 599px) {
  .euro-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .euro-gallery-grid .euro-thumb { border-radius: 4px; }
}
