.guarantee-banner-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 0;
}
.guarantee-banner-block .img-side {
    width: 100%;
    height: 390px;
    border-radius: 10px;
    overflow: hidden;
}
.guarantee-banner-block .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guarantee-banner-block .text-side {
    width: 100%;
    height: 390px;
    overflow-y: auto;
}
.guarantee-banner-block .text-side__title {
    position: sticky;
    top: 0;
    padding-bottom: 30px;
    margin: 0;
    background: var(--background-secondary);
    z-index: 1;
}
.guarantee-banner-block .text-side__text {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}
.guarantee-banner-block .text-side__text p,
.guarantee-banner-block .text-side__text ul,
.guarantee-banner-block .text-side__text ol {
    margin-bottom: 10px;
}
.guarantee-banner-block .text-side__text p:not(:first-of-type) {
    margin-top: 10px;
}
.guarantee-banner-block .text-side::-webkit-scrollbar,
.guarantee-banner-block .text-side::-webkit-scrollbar-thumb {
    width: 3px;
}


@media (max-width: 1320px) {
    .guarantee-banner-block {
        gap: 20px;
    }
    .guarantee-banner-block .img-side,
    .guarantee-banner-block .text-side {
        height: 400px;
    }
    .guarantee-banner-block .text-side__text {
        padding-right: 20px;
    }
    .guarantee-banner-block .text-side__text p,
    .guarantee-banner-block .text-side__text ul,
    .guarantee-banner-block .text-side__text ol {
        margin-bottom: 5px;
    }
    .guarantee-banner-block .text-side__text p:not(:first-of-type) {
        margin-top: 5px;
    }
}
@media (max-width: 768px) {
    .guarantee-banner-block {
        height: auto;
        flex-direction: column;
    }
    .guarantee-banner-block .img-side,
    .guarantee-banner-block .text-side {
        height: 300px;
        max-width: none;
    }
    .guarantee-banner-block .text-side__title {
        padding-bottom: 20px;
    }
}
@media (max-width: 512px) {
    .guarantee-banner-block .img-side {
        height: 240px;
    }
    .guarantee-banner-block .text-side__text {
        padding-right: 10px;
    }
}

