/* Pages Carousel */

.pages-carousel {
    width: 100%;
    overflow: hidden;
}

.page-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);

}

.page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    mix-blend-mode: multiply;
}

.page-card:hover img {
    transform: scale(1.05);
}

.page-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, transparent 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-card__overlay h3 {
    margin: 0;
    font-size: 28px!important;
    font-weight: 600;
    line-height: 1.3;
    color:#fff!important;
    max-width:60%;
}

.page-card__arrow {
    font-size: 30px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.page-card:hover .page-card__arrow {
    transform: translateX(4px);
}

@media screen and (max-width: 820px) {
    .page-card__overlay h3 {font-size: 22px!important;line-height: 1.2em;}
}
@media screen and (max-width: 820px) {
    .page-card__overlay h3 {font-size: 18px!important;}
}