
/* STEP 29 — search zoom-out then zoom-in, centered copyright, Music ART legal note */

/* Search results first recede into the beige space, then move forward into the destination. */
.gimmons-search-transition-image {
    transition:
        left .56s cubic-bezier(.76,0,.24,1),
        top .56s cubic-bezier(.76,0,.24,1),
        width .56s cubic-bezier(.76,0,.24,1),
        height .56s cubic-bezier(.76,0,.24,1),
        transform .56s cubic-bezier(.76,0,.24,1),
        opacity .42s ease,
        border-radius .42s ease,
        box-shadow .42s ease;
}
.gimmons-search-transition-image.is-receding {
    left: calc(50vw - 7vw) !important;
    top: calc(50vh - 9vh) !important;
    width: 14vw !important;
    height: 18vh !important;
    transform: scale(.84) !important;
    opacity: .92;
    border-radius: 2px;
    box-shadow: 0 28px 90px rgba(23,20,17,.18);
}
.gimmons-search-transition-image.is-expanding {
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: scale(1) !important;
    opacity: 1;
    border-radius: 0;
    box-shadow: none;
}

/* Keep footer copyright geometrically centered, independent of side columns. */
.music-art-footer-container { position: relative !important; }
.music-art-footer-layout {
    position: relative !important;
    grid-template-columns: minmax(0,1fr) minmax(260px,auto) minmax(0,1fr) !important;
    align-items: center !important;
}
.music-art-footer-copy-column {
    justify-self: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    line-height: 1.3 !important;
    transform: none !important;
}
.music-art-footer-back-column { justify-self: start !important; }
.music-art-footer-social-column { justify-self: end !important; }

.gimmons-track-disclaimer {
    margin: 22px 0 0;
    max-width: 880px;
    color: rgba(243,238,232,.68);
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
}

@media only screen and (max-width: 900px) {
    .gimmons-search-transition-image.is-receding {
        left: 37vw !important;
        top: 38vh !important;
        width: 26vw !important;
        height: 24vh !important;
    }
}
@media only screen and (max-width: 767px) {
    .music-art-footer-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        text-align: center !important;
    }
    .music-art-footer-back-column,
    .music-art-footer-copy-column,
    .music-art-footer-social-column {
        justify-self: center !important;
        text-align: center !important;
        white-space: normal !important;
    }
    .gimmons-search-transition-image.is-receding {
        left: 36vw !important;
        top: 40vh !important;
        width: 28vw !important;
        height: 20vh !important;
    }
}
