.rb-scope * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rb-scope {
    padding: 40px 0 120px;
    position: relative;
}

.rb-banner-card {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--gray-400);
    border-radius: 20px;
    width: 100%;
    height: 612px;
    max-height: 612px;
    overflow: hidden;
}

.rb-content-left {
    z-index: 2;
    padding: 34px 0 72px 82px;
    width: 39%;
    display: flex;
    flex-direction: column;
}

.rb-title {
    height: 181px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rb-title-inner {
    font-weight: 700;
    font-size: 61.43px;
    line-height: 1.5;
    color: #979797;
    letter-spacing: -1.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.rb-subtitle {
    color: var(--red-color);
    font-weight: 600;
    font-size: 32.08px;
    line-height: 150%;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rb-btn-group {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.rb-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.rb-btn-outline {
    padding: 20.5px 24.5px;
    color: var(--accent-red);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    border: 1.5px solid var(--accent-red-100);
    transition: all var(--transition-base);
    display: flex;
    justify-content: center;
    align-items: center;
}

.rb-btn-outline:hover {
    background-color: var(--accent-red-100);
}

.rb-btn-primary {
    padding: 16px 63px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-weight: 500;
    font-size: 21.81px;
    line-height: 29.99px;
    transition: all var(--transition-base);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 182px;
}

.rb-btn-primary .btn-label, .rb-btn-primary .draw-text-mask {
    font-size: 21.81px;
    line-height: 29.99px;
}

.rb-date-text {
    color: #969696;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -1.1px;
    margin-top: auto;
}

.rb-content-right {
    width: 62%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rb-picture-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rb-picture-wrapper picture, .rb-picture-wrapper picture img {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 100%;
    height: 100%;
}

.rb-picture-wrapper picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

/* --- PAGINATION (DOTS) --- */
.rb-swiper-pagination {
    position: absolute;
    bottom: 66px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: min-content !important;
}

.rb-scope .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    background: var(--gray-600) !important;
    margin: 0 !important;
    border-radius: 50% !important;
    transition: all var(--transition-base);
    cursor: pointer;
}

.rb-scope .swiper-pagination-bullet-active {
    width: 36px !important;
    height: 7px !important;
    background: var(--white) !important;
    border-radius: 10px !important;
}


@media (max-width: 1600px) {
    .rb-scope {
        padding: 40px 0 80px;
    }

    .rb-banner-card {
        height: 499px;
        max-height: 499px;
        border-radius: 20px;
    }

    .rb-content-left {
        padding: 38px 0 38px 38px;
        width: 58%;
    }

    .rb-title {
        letter-spacing: -1.1px;
        margin-bottom: 0;
    }

    .rb-subtitle {
        letter-spacing: -1.1px;
    }

    .rb-btn-outline {
        padding: 13px 24.5px;
    }

    .rb-btn-primary {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        padding: 13px 65px;
    }

    .rb-content-right {
        width: 66%;
    }

}

@media (max-width: 1279px) {
    .rb-scope {
        padding: 24px 0 32px;
    }

    .rb-banner-card {
        height: 329px;
        max-height: 329px;
        border-radius: 20px;
    }

    .rb-content-left {
        width: 68%;
    }

    .rb-title {
        font-size: 32px;
        height: 92px;
    }

    .rb-title-inner {
        font-size: 32px;
    }

    .rb-subtitle {
        font-size: 24px;
    }

    .rb-date-text {
        font-size: 16px;
    }

    .rb-picture-wrapper picture, .rb-picture-wrapper picture img {
        left: 0;
    }

    .rb-btn-outline, .rb-btn-primary {
        height: 48px;
        min-width: 187px;
    }

    .rb-swiper-pagination {
        bottom: 56px !important;
    }
}


@media (max-width: 1023px) {
    .rb-scope {
        padding: 18px 0 32px;
    }

    .rb-banner-card {
        height: 233px;
        max-height: 233px;
    }

    .rb-content-left {
        width: 57%;
        padding: 38px 0 13px 38px;
    }

    .rb-title {
        height: 60px;
    }

    .rb-title-inner {
        font-size: 20px;
    }

    .rb-subtitle {
        font-size: 18px;
    }

    .rb-btn-outline, .rb-btn-primary {
        font-size: 14px;
        padding: 9px 12px !important;
        min-width: 110px;
        height: 44px;
    }

    .rb-btn-primary .btn-label, .rb-btn-primary .draw-text-mask {
        font-size: 14px;
    }

    .rb-date-text {
        font-size: 12px;
    }

    .rb-picture-wrapper picture, .rb-picture-wrapper picture img {
        left: 0;
    }

    .rb-swiper-pagination {
        bottom: 49px !important;
    }

}


@media (max-width: 767px) {

    .rb-swiper-pagination {
        display: none !important;
    }

    .rb-scope {
        padding: 24px 0 32px;
    }

    .rb-banner-card {
        height: 435px;
        max-height: 435px;
    }

    .rb-banner-card {
        flex-direction: column-reverse;
        height: 435px;
        max-height: 435px;
        border-radius: 16px;
    }

    .rb-content-left {
        width: 100%;
        padding: 32px 16px 14px;
        background-image: url("mobile-bg.svg");
        background: linear-gradient(to bottom,
        transparent 0%,
        #d9dadc 35%,
        #d9dadc 100%);
        background-size: cover;
        background-repeat: no-repeat;
        height: 204px;
        display: flex;
        justify-content: flex-end;
    }

    .rb-title {
        height: 48px;
        margin-bottom: 7.5px;
    }

    .rb-title-inner {
        color: #888888;
        font-weight: 700;
        font-size: 15.55px;
        line-height: 150%;
        letter-spacing: -1.1px;
    }

    .rb-subtitle {
        font-weight: 700;
        font-size: 18px;
        line-height: 150%;
        letter-spacing: -1.1px;
    }

    .rb-btn-group {
        gap: 8px;
    }

    .rb-btn-outline, .rb-btn-primary {
        font-size: 12px;
        line-height: 15px;
        padding: 11px 16px;
        width: calc(50% - 4px);
        height: 37px;
    }

    .rb-btn-primary .btn-label, .rb-btn-primary .draw-text-mask {
        font-size: 12px;
        line-height: 15px;
    }

    .rb-date-text {
        font-size: 12px;
        margin-top: 12px;
    }

    .rb-content-right {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .rb-picture-wrapper picture img {
        object-position: center;
    }
}

@media (max-width: 374px) {
    .rb-banner-card {
        height: 388px;
        max-height: 388px;
        background: linear-gradient(4.64deg, #E1E0E5 -14.45%, #FFFFFF 99.84%);
    }

    .rb-content-left {
        width: 100%;
        padding: 0 13px 14px;
        height: 171px;
        background-image: unset;
        background: unset;
    }

    .rb-subtitle {
        margin: 7.5px 0;
    }

    .rb-content-right {
        position: unset;
    }
}