/* Container */
.wsm-swiper-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Base swiper card */
.wsm-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.06);
    overflow: hidden;
    min-height: 260px;
}

/* Image (left) */
.wsm-image {
    flex: 0 0 55%;
    max-width: 55%;
    overflow: hidden;
}
.wsm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content (right) */
.wsm-content {
    padding: 34px;
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wsm-title {
    font-size: 24px;
    margin: 0 0 12px 0;
    font-weight: 700;
    color: #111;
}
.wsm-meta {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 14px;
}
.wsm-excerpt {
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.45;
}

/* Register button like design */
.wsm-btn {
    display: inline-block;
    background: #0b56d9;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 6px 18px rgba(11,86,217,0.18);
}

/* Swiper arrows custom */
.swiper-button-next, .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(2,6,23,0.12);
    top: 50%;
    transform: translateY(-50%);
    color: #111;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
}

/* Pagination bullets */
.swiper-pagination {
    text-align: center;
    padding-top: 18px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
    background: #0b56d9;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .wsm-card {
        flex-direction: column;
    }
    .wsm-image {
        flex-basis: auto;
        max-width: 100%;
        height: 220px;
    }
    .wsm-content {
        padding: 20px;
    }
    .wsm-title { font-size: 20px; }
}
