body.page-venue {
  background-color: var(--color-bg);
}

.venue-section-grid {
  align-items: flex-start;
}

.venue-list {
  display: grid;
  gap: var(--space-2);
}

.venue-list__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-olive), var(--color-primary));
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.venue-list li {
  display: flex;
  gap: var(--space-2);
  color: var(--color-text-soft);
}

.venue-list li span:last-child {
  flex: 1;
}

.venue-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  background-color: var(--color-surface);
}

.venue-image-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-image-card__caption {
  padding: var(--space-4);
  font-size: 0.9rem;
  color: var(--color-text-soft);
  background: linear-gradient(180deg, rgba(247, 240, 230, 0.9), #ffffff);
}

.venue-image-card--poker {
  border-radius: var(--radius-lg);
}

.venue-highlight-card {
  height: 100%;
}

.venue-highlight-card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
}

.venue-advantages-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.venue-adv-item__title {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.venue-gallery-wrapper {
  max-width: var(--container-wide-max-width);
  margin: 0 auto;
}

.venue-gallery {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  background-color: var(--color-surface);
}

.venue-gallery__item {
  position: relative;
}

.venue-gallery__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.venue-gallery__caption {
  padding: var(--space-4);
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.venue-gallery-cta {
  justify-content: center;
}

.venue-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.venue-cta-card__content {
  flex: 2 1 260px;
}

.venue-cta-card__content h2 {
  margin-bottom: var(--space-3);
}

.venue-cta-card__actions {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.venue-cta-final {
  padding-bottom: var(--space-16);
}

@media (max-width: 768px) {
  .venue-cta-card__actions {
    width: 100%;
    align-items: stretch;
  }

  .venue-gallery {
    border-radius: var(--radius-lg);
  }
}
