/*Styles here have been used on more than one section*/
/*They can be overrided in other stylesheets*/
.shared-image-container {
    /*position: relative;*/
    /*width: 100%;*/
    /*max-width: 400px;*/
    /*max-height: 285px;*/
}

.shared-image-container .image {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
}

.shared-btn {
    padding: 10px 20px;
    background-color: var(--theme-color-red);
    border-radius: 5px;
    border: 1px solid var(--theme-color-red);
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.shared-btn:hover {
    background-color: transparent;
    color: var(--theme-color-red);
}

.swiper-nav-wrapper {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;

}