.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
  
    background: linear-gradient(
      to bottom,
      rgba(255, 0, 0, 0) 0%,
      rgba(255, 0, 0, 0.1) 40%,
      rgba(15, 15, 15, 0.85) 75%,
      #0f0f0f 100%
    );
  
    pointer-events: none;
  }

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }

.gig-page {
    padding-top: 1.5rem;
}

.gig-page > h2 {
    margin-top: 0;
}

.gig-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start
  }
  
  .gig-details,
  .gig-media {
    flex: 1;
    justify-content: flex-start;
  }

  .gig-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
  }

  .gig-media {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gig-poster {
    margin-top: 1rem;
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .poster-wrap {
    position: relative;
    display: inline-block;
  }
  
  .poster-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4), transparent 70%);
    filter: blur(20px);
    z-index: -1;
  }

  .gig-map
  {
    margin-top: 5rem;
  }

  iframe {
    width: 100%;
    height: 300px;
    border: 0;
  }

  .gig-poster {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: auto;
  }

  .btn-facebook
  {
    border: 1px solid rgba(255,255,255,0.9);
    background: #3b5998;
    color: #fff;
  }

  .btn-facebook:hover
  {
    border: 1px solid rgba(255,255,255,0.9);
    background: #1877f2;
    color: #fff;
  }

  @media (max-width: 768px) {

    .hero-tagline {
      margin-top: 1rem;
    }

    .gig-layout {
      flex-direction: column;
    }

    .gig-buttons {
        flex-direction: column;
        align-items: center;
      }
  }