.ss-container-f8f677f7 {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.ss-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ss-card:hover {
    transform: translateY(-5px);
}

.ss-card-image {
    height: 200px;
    overflow: hidden;
    margin: 16px 16px 0;
    border-radius: 16px;
}

.ss-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-card-content {
    padding: 24px;
    flex-grow: 1;
}

.ss-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #4B4B7C;
    margin: 0 0 16px;
    line-height: 1.3;
}

.ss-card-title span, .ss-card-desc span {
    background-color: #ffff00;
    padding: 0 4px;
}

.ss-card-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Make entire card clickable by styling .ss-card-link as an absolute overlay spanning 100% card height/width */
.ss-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
}

/* Style the button icon inside */
.ss-card-link-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B4B7C;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ss-card:hover .ss-card-link-btn {
    transform: scale(1.08);
    background: #4B4B7C;
    color: #fff;
}

.ss-container-f8f677f7 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #4B4B7C;
    opacity: 0.3;
}

.ss-container-f8f677f7 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #4B4B7C;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #4B4B7C;
}
