.c-magazines-carousel {
    padding: 60px 20px;
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
}

.c-magazines-carousel__block-title.subscription-title {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 46.62px;
    text-align: center;
    letter-spacing: .9px;
    margin-bottom: 16px;
    padding-left: 0;
}

.c-magazines-carousel__block-description {
    font-family: 'Noto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.8;
}

.c-magazines-carousel__carousel {
    margin-bottom: 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.c-magazines-carousel__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 35px 0;
    transition: transform 0.3s ease;
}

.c-magazines-carousel__column {
    flex: 1;
}

/* Карточки журналів */
.c-magazine-item {
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.c-magazine-item:hover {
    transform: translateY(-5px);
}

.c-magazine-item__photo img {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 24px;
    max-height: 327px;
}

.c-magazine-item__title {
    font-family: 'Noto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 35px;
    min-height: 75px;
}

.c-magazine-item__price {
    font-family: 'Noto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.archive-btn {
    display: inline-block;
    width: 250px;
    height: 57px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 55px;
    margin: 0 auto 34px;
}

.archive-btn:hover {
    background: #fff;
    color: #000;
}

/* Кнопки навігації */
.c-magazines-carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.c-magazines-carousel__button--prev {
    left: -50px;
}

.c-magazines-carousel__button--next {
    right: -50px;
}

.c-magazines-carousel__button-inner {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
}

.c-magazines-carousel__button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.c-magazines-carousel__carousel{
    -webkit-user-drag: none;
    user-drag: none;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .c-magazines-carousel__column {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .c-magazine-item__photo img{
        max-height: 365px;
    }
    .c-magazines-carousel__list {
        overflow-x: auto;
        justify-content: flex-start;
    }
    .c-magazines-carousel__column {
        flex: 0 0 80%;
        max-width: 80%;
    }
    .c-magazines-carousel__button--prev,
    .c-magazines-carousel__button--next {
        display: none;
    }
}
