:root {
    --Text-text-primary: #0B1120;
    --Text-text-secondary: #374151;
    --Text-text-brand: #9A3F00;

    --Border-border-subtle: #E5E7EB;
    --Background-bg-elevated: #FFF;

    --Size-Display-md: 40px;
    --Line-Height-Display-md: 52px;

    --Size-Body-xl: 18px;
    --Line-Height-Body-xl: 28px;

    --Size-Body-lg: 16px;
    --Line-Height-Body-lg: 24px;

    --Size-Body-md: 14px;
    --Line-Height-Body-md: 20px;

    --Size-H3: 20px;
    --Line-Height-H3: 32px;

    --Weight-700: 700;
    --Weight-600: 600;
    --Weight-500: 500;
    --Weight-400: 400;
}

.rr h2,
.rr h3,
.rr p {
    margin: 0 !important;
}

.rr {
    display: flex;
    width: 100%;
    max-width: 1280px;
    padding: 80px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

.rr__header {
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    align-self: stretch;
    box-sizing: border-box;
}

.rr__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.rr__title {
    color: var(--Text-text-primary);
    font-family: Merriweather;
    font-size: var(--Size-Display-md);
    font-style: normal;
    font-weight: var(--Weight-700);
    line-height: var(--Line-Height-Display-md);
    letter-spacing: -0.6px;
    margin: 0 !important;
}

.rr__subtitle {
    color: var(--Text-text-secondary);
    font-family: Inter;
    font-size: var(--Size-Body-xl);
    font-style: normal;
    font-weight: var(--Weight-400);
    line-height: var(--Line-Height-Body-xl);
    margin: 0 !important;
}

.rr__btn {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--primary-filled-bg, #FCA004);
    background: var(--primary-filled-bg, #FCA004);
    color: var(--Text-text-primary, #0B1120);
    font-family: Inter;
    font-size: var(--Size-Body-lg, 16px);
    font-style: normal;
    font-weight: var(--Weight-600, 600);
    line-height: var(--Line-Height-Body-lg, 24px);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.rr__btn:hover {
    color: #fff !important ;
}
.rr__btn:hover svg path {
    fill: #fff !important;
}
.rr__btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.rr__slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.rr__slider {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
    will-change: transform;
    min-width: 0;
}

.rr__card {
    display: flex;
    flex: 0 0 clamp(343px, calc((100% - 48px) / 3), 410px);
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid var(--Border-border-subtle);
    background: var(--Background-bg-elevated);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.rr__image {
    display: block;
    width: 100%;
}

.rr__image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.rr__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    padding: 16px 16px 24px;
}

.rr__date {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--Text-text-brand);
    font-family: Inter;
    font-size: var(--Size-Body-md);
    font-style: normal;
    font-weight: var(--Weight-500);
    line-height: var(--Line-Height-Body-md);
}

.rr__card-title {
    color: var(--Text-text-primary);
    font-family: 'Merriweather';
    font-size: var(--Size-H3);
    font-style: normal;
    font-weight: var(--Weight-600);
    line-height: var(--Line-Height-H3);
    letter-spacing: -0.1px;
    overflow: hidden;
}

.rr__card-title a {
    color: inherit;
    text-decoration: none;
}

.rr__card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.rr__excerpt {
    color: var(--Text-text-secondary);
    font-family: Inter;
    font-size: var(--Size-Body-lg);
    font-style: normal;
    font-weight: var(--Weight-400);
    line-height: var(--Line-Height-Body-lg);
}

.rr__arrows {
    display: flex;
    gap: 32px;
    align-self: flex-start;
}

.rr__arrow {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--Background-bg-elevated);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.rr__arrow:focus,
.rr__arrow:active,
.rr__arrow:hover {
    background: var(--Background-bg-elevated);
    border-radius: 8px;
    border: 1px solid #D1D5DB;
}

.rr__arrow svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.rr__arrow:hover,
.rr__arrow:active,
.rr__arrow:focus {
    border-color: #D1D5DB;
    outline: none;
}

.rr__arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .rr {
        padding: 60px 0;
    }

    .rr__header {
        padding: 0;
    }

    .rr__title {
        font-size: 32px;
        font-style: normal;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .rr {
        padding: 40px 0;
    }

    .rr__header {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .rr__card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .rr__title {
        font-size: 28px;
        font-style: normal;
        line-height: 36px;
        letter-spacing: -0.32px;
    }
}