/* Exhibition city page (Views/Exhibition.cshtml) — register button above the
   description text. Button visuals mirror .upcoming-event-button from the home
   page (root.css), self-contained here because root.css isn't loaded globally. */

.exhibition-register {
    margin: 8px 0 28px;
}

.exhibition-register__button {
    display: inline-block;
    vertical-align: middle;
    background: rgba(0, 131, 218, 1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 1) !important;
    padding: 14px 32px;
    font-family: Geologica;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, background-color;
}

.exhibition-register__button:hover {
    background-color: #ef6860 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 104, 96, 0.3);
}

/* .org-about__text img max-width already covered globally (global.css) */

@media (max-width: 767px) {
    .exhibition-register__button {
        display: block;
        text-align: center;
    }
}
