.renman-section .text-columns-with-images__subtitle {
    margin-bottom: 20px;
}

.renman-section .text-columns-with-images__title {
    overflow: hidden;
    margin-bottom: 30px;
}

.renman-section .renman-grid {
    display: grid;
    gap: 14px;
    padding: 0;
}

.renman-section .renman-card {
    height: 100%;
    position: relative;
    width: 100%;
    font-size: 0;
}

.renman-section .renman-card__wrapper {
    height: 100%;
    position: relative;
    transition: all 0.2s;
    z-index: 2;
    overflow: hidden;
    /* padding: 24px; */
}

.renman-section .renman-card__wrapper.no-spacing {
    padding: 0;
}

.renman-section .renman-card__image {
    display: inline-block;
    height: auto;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.renman-section .renman-card__image--round {
    border-radius: 50%;
}

.renman-section .renman-card__link {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}

.renman-section .renman-card__link img {
    height: 100%;
    left: 0;
    min-height: 1px;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.renman-section .renman-card__content {
    margin: 0px 0;
}

.renman-section .renman-card__title {
    /* margin-bottom: 15px; */
    font-size: 16px;
}

.renman-section .renman-card__icon {
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.renman-section .renman-card__text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.renman-section .renman-card__button {
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    font-size: 14px;
}

.renman-section .renman-card__button--left {
    justify-content: flex-start;
}

.renman-section .renman-card__button--center {
    justify-content: center;
}

.renman-section .renman-card__button .button-text {
    margin-right: 7px;
    word-break: break-all;
}

.renman-section .renman-card__button .button-arrow {
    display: inline-flex;
    transform: rotate(-90deg);
}

.renman-section .renman-card__button .button-arrow svg {
    width: 12px;
    height: 12px;
}

.renman-section .text-columns-with-images__control {
    text-align: center;
    margin-top: 30px;
}

/* Swiper mobile */
.renman-section .swiper-button-next,
.renman-section .swiper-button-prev {
    background: #f1f1f1;
    border-radius: 50%;
    padding: 18px;
    width: 25px;
    height: 25px;
}

.renman-section .swiper-button-next:after,
.renman-section .swiper-button-prev:after {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.renman-section .text-image-pagination-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.renman-section .text-image-pagination-box .ctr-button {
    background: none;
    border: none;
    cursor: pointer;
}

.renman-section .text-image-pagination-box .prev {
    transform: rotate(180deg);
}

.renman-section .text-image-pagination-box .next {
    transform: rotate(0deg);
}

.renman-section .text-image-pagination-box svg {
    width: 15px;
    height: 15px;
}

/* Video styles */
.renman-section .renman-card__video {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

@media (max-width: 959px) {
    .renman-section .text-columns-with-images__subtitle {
        margin-bottom: 10px;
    }

    .renman-section .renman-card__icon {
        width: 25px;
    }

    .renman-section .renman-card__title {
        /* margin-bottom: 10px; */
    }

    .renman-section .renman-card__text {
        margin-bottom: 10px;
    }

    .renman-section .renman-card__wrapper {
        /* padding: 20px; */
    }

    .renman-section .renman-card__wrapper.no-spacing {
        padding: 0;
    }

    .renman-section .text-columns-with-images__control {
        margin-top: 20px;
    }

    .renman-section .renman-grid.desktop-only {
        display: none !important;
    }

    .renman-section .mobile-swiper {
        display: block;
    }

    .swiper-grid-column>.swiper-wrapper {
        flex-direction: row !important;
    }
}

@media (min-width: 960px) {
    .renman-section .mobile-swiper {
        display: none;
    }

    .renman-section .renman-grid.desktop-only {
        display: grid !important;
    }
}

/* 修复Swiper grid模式下第二行的margin-top */
.renman-section .swiper-wrapper .swiper-slide {
    margin-top: 0 !important;
}

/* 移动端堆叠grid */
.renman-section .renman-grid-mobile {
    display: grid;
    gap: 14px;
    padding: 0;
}