.exhibitions-page {
    overflow-y: auto;
}

.exhibitions-tabs .nav-link {
    background-color: rgba(230, 230, 230, 1);
    border: 1px solid rgba(230, 230, 230, 1);
    border-radius: 50rem;
    padding: 4px 24px;
    max-width: fit-content;
    height: 36px;
}

.exhibitions-tabs .nav-link:hover {
    background-color: rgba(0, 122, 255, 0.04);
    color: rgba(0, 122, 255, 1) !important;
    padding-bottom: 4px !important;
}

.exhibitions-tabs .nav-link.active {
    border: 1px solid rgba(0, 122, 255, 1);
    background-color: rgba(0, 122, 255, 0.04);
    color: rgba(0, 122, 255, 1) !important;
}

.exhibition-box {
    background-color: rgba(227, 234, 244, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    border: 1px solid #e6e6e8;
}

.exhibition-box.upcoming {
    background-color: white;
    border: 1px solid rgba(0, 122, 255, 1);
}

.exhibition-box .exhibition-image-wrapper {
    width: 40%;
    height: 230px;
    max-width: 340px;
    overflow: hidden;
}

.exhibition-box .exhibition-image-wrapper, .exhibition-box .exhibition-image-wrapper img {
    border-radius: 8px;
}

.exhibition-content-wrapper .exhibition-title {
    font-size: 16px;
}

.exhibition-content-wrapper .exhibition-about {
    font-size: 14px;
}

@media (max-width: 1289.98px) {
    .exhibition-box .exhibition-image-wrapper {
        height: 186px;
        width: 30%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .exhibition-box .exhibition-image-wrapper {
        width: 100%;
        height: 148px;
    }
    .exhibition-actions {
        row-gap: 16px;
    }
    .exhibitions-page h4 {
        font-size: 16px;
    }
    .exhibitions-tabs .nav-link {
        padding: 4px 16px;
    }
}

