/* Venue Section */
.venue-section {
  background: #000;
  padding: 90px 20px;
}

.venue-container {
  max-width: 1320px;
  margin: 0 auto;
}

.venue-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.venue-badge {
  margin: 0 auto 16px;
}

.venue-title,
.venue-subtitle {
  text-align: center;
}

.venue-title {
  margin: 0 0 10px;
}

.venue-subtitle {
  margin: 0 0 34px;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 490px);
  gap: 34px;
  align-items: start;
}

.venue-layout--no-images {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.venue-gallery {
  display: grid;
  gap: 14px;
}

.venue-gallery-main-wrap,
.venue-gallery-secondary-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue-gallery-main-wrap {
  min-height: 320px;
}

.venue-gallery-main,
.venue-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-gallery-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.venue-gallery-secondary--single {
  grid-template-columns: minmax(0, 1fr);
}

.venue-gallery-secondary-item {
  min-height: 220px;
}

.venue-details {
  display: grid;
  gap: 14px;
}

.venue-card {
  background: #e5e7eb;
  border: 1px solid #d7dbe3;
  border-radius: 10px;
  padding: 18px;
}

.venue-card-title {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 28px;
  font-weight: 700;
}

.venue-icon,
.venue-logistics-icon {
  color: var(--event-color);
}

.venue-icon--xl {
  font-size: 2.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.venue-card-address {
  margin: 0 0 12px;
  color: #374151;
  font-size: 19px;
  line-height: 1.5;
}

.venue-map-link {
  color: var(--event-color);
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
}

.venue-map-link:hover {
  text-decoration: underline;
}

.venue-logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.venue-card--logistics {
  text-align: center;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 118px;
}

.venue-logistics-value {
  margin: 8px 0 4px;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.venue-logistics-label {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

.venue-card--visa {
  background: #e8effa;
  border-color: color-mix(in srgb, var(--event-color) 30%, #d7dbe3);
}

.venue-visa-text {
  margin: 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.5;
}

.venue-visa-email {
  display: inline-block;
  margin-top: 8px;
  color: var(--event-color);
  font-weight: 600;
  text-decoration: none;
}

.venue-visa-email:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {

  .venue-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-details {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .venue-badge {
    margin-bottom: 14px;
  }

  .venue-subtitle {
    margin-bottom: 24px;
  }

  .venue-gallery-main-wrap {
    min-height: 230px;
  }

  .venue-gallery-secondary-item {
    min-height: 170px;
  }

  .venue-logistics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-card {
    padding: 14px;
  }
}
