.gig-date
{
    display: inline-block;
    width: 25px;
    text-align: right;
    margin-right: 5px;
}

.gig-page {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
}

.gigs-image-sticky {
    position: sticky; 
    top: 20px; 
    align-self: start;
}

.gigs-image-sticky img {
    width: 90%; 
    margin: auto; 
    padding: 0.5rem; 
    background: rgba(255,255,255,0.03); 
    border-radius: 12px;
}

.gigs-image-sticky p {
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 0;
}

#gig-image {
    opacity: 1;
    transition: opacity 0.4s ease;
  }

h3 {
    margin-bottom: -10px;
    color: #ccc;
}

.current-month {
    color: #fff;
}

.next-gig {
    color: #ff3c00;
    font-weight: bold;
}

.next-gig-venue::after {
    content: " ← next";
    font-size: 0.85em;
    opacity: 0.7;
}

.past-gig {
    opacity: 0.6;
}

.past-gig a {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin-bottom: 20px;
}

li {
    margin-bottom: -5px;
    align-items: baseline;
}

@media (max-width: 900px) {

    .gig-page {
        display: block;
    }

    .gigs-image-sticky {
        width: 100%;
        position: static; /* disables sticky */
        margin-top: 30px;
    }

    .gigs-image-stick img {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
    }
}