/* index3 — 1+2+2 杂志拼贴轮播（左大图 + 右四宫格） */
.SchoolFigures-bento {
    width: 1232px;
    margin: 36px auto 0;
    background: #fff;
    border-radius: 7px;
    padding: 9px 20px 16px 20px;
    border: 2px solid #ccc;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}

.SchoolFigures-bento .sf-bento-swiper {
    overflow: hidden;
    padding-top: 12px;
    padding-bottom: 36px;
    position: relative;
}

.SchoolFigures-bento .sf-bento-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 175px);
    gap: 16px;
    height: auto;
}

.SchoolFigures-bento .sf-bento-item {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    background: #f8f8f8;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.SchoolFigures-bento .sf-bento-item:hover {
    border-color: #d8d8d8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.SchoolFigures-bento .sf-bento-lg {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    height: auto;
}

.SchoolFigures-bento .sf-bento-sm {
    height: 100%;
    min-height: 175px;
}

.SchoolFigures-bento .sf-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.SchoolFigures-bento .sf-bento-item:hover img {
    transform: scale(1.03);
}

.SchoolFigures-bento .sf-bento-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 75, 141, 0.88) 100%);
}

.SchoolFigures-bento .sf-bento-lg .sf-bento-cap {
    padding: 16px 18px;
}

.SchoolFigures-bento .sf-bento-cap h5 {
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    margin: 0 0 4px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.SchoolFigures-bento .sf-bento-lg .sf-bento-cap h5 {
    font-size: 18px;
}

.SchoolFigures-bento .sf-bento-cap p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.SchoolFigures-bento .sf-bento-swiper .swiper-pagination {
    bottom: 0;
}

.SchoolFigures-bento .sf-bento-swiper .swiper-pagination span {
    width: 8px;
    height: 8px;
    background: #b5afaf;
    opacity: 1;
    margin: 0 6px !important;
}

.SchoolFigures-bento .sf-bento-swiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #004b8d;
    transform: scale(1.3);
}

@media (min-width: 1px) and (max-width: 1268px) {
    .SchoolFigures-bento {
        width: 100%;
        padding: 0;
    }

    .SchoolFigures-bento .sf-bento-slide {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .SchoolFigures-bento .sf-bento-lg {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }

    .SchoolFigures-bento .sf-bento-sm {
        min-height: 150px;
    }
}
