.wpt_widget_content {
    border: 1px solid #E4E4E4;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styling Tab */
.wpt-tabs {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 25px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Setiap tab */
.wpt-tabs li {
    list-style: none;
    flex: 1;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    color: #444;
    position: relative;
}

/* Tab saat dipilih */
.wpt-tabs li.selected {
    background: rgba(217, 35, 106, 0.1); /* Warna utama tetapi transparan */
    color: #D9236A;
    font-weight: bold;
    border-radius: 25px;
    border-bottom: 2px solid #D9236A;
}

/* Efek hover */
.wpt-tabs li:hover {
    background: rgba(217, 35, 106, 0.15);
    color: #D9236A;
}

/* Styling List Artikel */
.tab-content {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tab-content li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E4E4E4;
    transition: 0.3s;
}
.tab-content li:last-child {
    border-bottom: none;
}

/* Thumbnail */
.wpt_thumb {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 12px;
    flex-shrink: 0;
}
.wpt_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Judul Artikel */
.tab-content li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
.tab-content li a:hover {
    color: #D9236A;
}

/* Efek Hover */
.tab-content li:hover {
    background: #f9f9f9;
    border-radius: 5px;
}