.ready-package__catalog {
    margin-top: 40px;
    margin-bottom: 80px;
}

.ready-package__box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ready-package__title {
    margin: 0;
    font-family: 'Inter Medium';
    font-size: 26px;
    line-height: normal;
    color: #333;
    text-align: left;
    letter-spacing: unset;
    text-transform: uppercase;
}

.ready-package__container {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.ready-package__buttons {
    margin-left: auto;
    max-width: 565px;
    width: 100%;
    display: flex;
    gap: 8px;
}

.ready-package__button {
    padding: 10px;
    width: 100%;
    background-color: #333;
    border: none;
    cursor: pointer;
    border-radius: 7px;
    font-family: 'Inter Medium';
    font-size: 18px;
    line-height: normal;
    color: #fff;
    text-align: center;
    transition: .3s ease-in-out;
}

.ready-package__button:hover {
    background-color: #df8844;
}

.ready-package__button:active {
    background-color: #333;
}

.ready-package__button:disabled {
    pointer-events: none;
    opacity: .3;
}

.ready-package__block {
    position: relative;
    overflow: auto hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

.ready-package__block::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.ready-package__cards {
    display: flex;
    gap: 13px;
    width: 100%;
}

.ready-package__card {
    min-width: calc(50% - 6.5px);
    display: flex;
    flex-direction: column;
}

.ready-package__card-full {
    min-width: 100%;
}

.ready-package__card .ready-set__card {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .ready-package__buttons {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .ready-package__buttons {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .ready-package__catalog {
        margin-bottom: 40px;
    }

    .ready-package__title {
        font-size: 21px;
    }

    .ready-package__card {
        min-width: 80vw;
    }

    .ready-package__buttons {
        display: none;
    }
}