.rp-products {
    padding: 100px 0;
    background: #F8F8F8;
}
.rp-products__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.rp-products__header {
    text-align: center;
    margin-bottom: 25px;
}
span.rp-products__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}
.rp-products__title {
        font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.rp-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.rp-products__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 40px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0px 2px 4px 0px #00000024, 0px 0px 2px 0px #0000001F;
}
.rp-products__logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 55px;
}
.rp-products__logo {
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
.rp-products__card-name {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    line-height: 30px;
    margin: 0 0 10px;
}
.rp-products__card-body {
    flex: 1;
    margin-bottom: 36px;
}
.rp-products__card-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 25px;
    margin: 0;
}
a.rp-products__card-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #3040CF;
    text-decoration: none;
    line-height: 18px;
    margin-top: auto;
    transition: opacity 0.2s ease;
}
a.rp-products__card-link:hover {
    opacity: 0.75;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .rp-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-products__title {
        font-size: 32px;
    }
}
@media (max-width: 640px) {
    .rp-products {
        padding: 52px 0 60px;
    }
    .rp-products__container {
        padding: 0 20px;
    }
    .rp-products__grid {
        grid-template-columns: 1fr;
    }
    .rp-products__title {
        font-size: 26px;
    }
    .rp-products__card {
        padding: 22px 20px;
    }
}
