/* Gig Detail Banner */
.gig-detail-banner {
    width: 100%;
    height: 300px;
    /* Adjust height as needed */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
}

.gig-detail-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or contain, depending on image style */
    display: block;
    padding: 1rem;
}

@media (max-width: 768px) {
    .gig-detail-banner {
        height: 200px;
    }
}

/* Similar Gigs */
.similar-gigs-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.similar-gigs-section .section-title {
    margin-bottom: 40px;
    text-align: left;
}