#block-fc-theme-fcextranavbar {
  position: relative;
  background: transparent;
  height: 0;
  overflow: visible;
  z-index: 3;
}

.fc-navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  width: 100%;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#block-fc-theme-homevenue {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.venue {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--line-color);
}

.venue .title {
  text-transform: uppercase;
}

.venue .label {
  text-transform: uppercase;
  color: var(--green-bright);
}

.venue__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}

.venue__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 28, 22, 0.92) 0%, rgba(20, 28, 22, 0.5) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 3rem;
}

.venue__content {
  max-width: 480px;
}

.venue__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .venue__overlay {
    padding: 0 1.5rem;
  }
}