.jp-container-29060 {
    padding: 20px 40px 50px 40px;
    position: relative;
    background-color: #F6F3FE; /* Theme background */
    border-radius: 12px;
}

.jp-container-29060 .swiper-slide {
    height: auto; /* Memastikan slide mengikuti tinggi swiper */
}

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

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

.jp-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.jp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jp-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.jp-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.jp-desc {
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.jp-period-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.jp-period-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.jp-period-icon i {
    font-size: 1.1rem;
}

.jp-period-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.jp-btn-wrap {
    margin-top: auto;
}

.jp-btn {
    display: inline-block;
    background-color: #1932B4; /* Primary color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.jp-btn:hover {
    background-color: #00277F; /* Brilliant Mind color */
    color: #fff;
}

/* Swiper overrides */
.jp-container-29060 .swiper-button-next,
.jp-container-29060 .swiper-button-prev {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.jp-container-29060 .swiper-button-next:after,
.jp-container-29060 .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.jp-container-29060 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.5;
}

.jp-container-29060 .swiper-pagination-bullet-active {
    opacity: 1;
}