.hc-press-slide-wrap {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    background: #fff;
    border-radius: 18px;
}

.hc-press-slide-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-left: 8px;
    padding-top: 15px;
    letter-spacing: -1px;
}

.hc-press-slide.swiper {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 0;
}

.swiper-slide {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 410px;
    width: 100% !important;
    max-width: none;
    min-width: 0;
    margin: 0 auto;
    position: relative;
    box-shadow: none;
    border: 1.1px solid #e1e5ee;

}

.card-img-box {
    width: 100%;
    max-height: 330px;
    aspect-ratio: 2/1.15;
    background: none !important;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 0 0;
    transition: transform 0.22s;
    background: none !important;
}

.card-bottom {
    min-height: 72px;
    padding: 24px;
    background: #EAEEF1;
    border-radius: 0 0 14px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 0;
    box-shadow: none;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #18191c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 78%;
    letter-spacing: -0.5px;
}

.card-more {
    color: #656565;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.16s;
}

.card-more:hover {
    color: #1639a1;
}

.slide-number-outer {
    position: absolute;
    top: 15px;
    right: 0px;
    font-size: 17.5px;
    color: #191e32;
    font-weight: 700;
    background: none;
    box-shadow: none;
    border-radius: 0;
    z-index: 10;
    padding: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;

    user-select: none;
    width: auto;
    height: 26px;
    justify-content: flex-end;
}

.slide-number-outer .slide-current {
    color: #2152d6;
    font-weight: 700;
    min-width: 22px;
    text-align: right;
    font-size: 18px;
    padding-right: 0.4em;
}

.slide-number-outer .slide-bar-wrap {
    position: relative;
    width: 46px;

    height: 3.5px;
    background: #e1e7ee;
    border-radius: 3px;
    margin: 0 9px;

    overflow: hidden;
    top: 1.5px;
}

.slide-number-outer .slide-bar {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2152d6 60%, #6fa6ff 100%);
    border-radius: 3px;
    transition: width 0.35s cubic-bezier(.7, 1.4, .7, 1);
}

.slide-number-outer .slide-total {
    font-size: 15px;
    color: #adb5bd;
    font-weight: 500;
    min-width: 22px;
    text-align: left;
    padding-left: 0.4em;
}

.slide-number-outer .hc-press-prev,
.slide-number-outer .hc-press-next {
    border: none;
    background: none;
    color: #2152d6;
    font-size: 19px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.16s;
    outline: none;
    box-shadow: none;
}

.slide-number-outer .hc-press-prev:after {
    content: '〈';
}

.slide-number-outer .hc-press-next:after {
    content: '〉';
}

.slide-number-outer .hc-press-prev:active,
.slide-number-outer .hc-press-next:active {
    background: #e6eefc;
}

.slide-number-outer .hc-press-toggle {
    border: none;
    background: none;
    color: #2152d6;

    font-size: 19px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.16s;
    outline: none;
    box-shadow: none;
    position: relative;
}

.slide-number-outer .hc-press-toggle:active,
.slide-number-outer .hc-press-toggle:focus {
    background: #e6eefc;
}

.slide-number-outer .hc-press-toggle .play-icon,
.slide-number-outer .hc-press-toggle .pause-icon {
    color: #2152d6 !important;

    background: none !important;

    font-size: 21px;
    line-height: 1;
    vertical-align: middle;
    display: inline;
}

@media (max-width: 700px) {
    .slide-number-outer {
        right: 10px;
        font-size: 15px;
        gap: 7px;
    }

    .slide-number-outer .slide-bar-wrap {
        width: 28px;
    }

    .slide-number-outer .hc-press-prev,
    .slide-number-outer .hc-press-next {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }
    .hc-press-slide-title{
        margin-bottom: 50px;
        font-size: 22px;
    }
    .slide-number-outer{
        margin-top: 45px;
    }

    .card-title{
        font-size: 15px;
    }
    .card-more{
        font-size: 12px;
    }
}