/* CSS Khusus Custom Widget TradeIndonesia */

.ti-pop-widget {
    background-color: #001a33; /* Warna Biru Tua Tema */
    padding: 24px;
    border-radius: 16px;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 25px;
}
.ti-pop-widget * { box-sizing: border-box; }

.ti-pop-header {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.ti-pop-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #D4AF37; /* Warna Emas TradeIndonesia */
}

.ti-pop-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    gap: 15px;
    transition: all 0.3s ease;
}
.ti-pop-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ti-pop-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 55px;
    font-family: "Arial Black", Arial, sans-serif;
    color: #001a33;
    text-shadow: 
        -1px -1px 0 rgba(255,255,255,0.2),  
         1px -1px 0 rgba(255,255,255,0.2),
        -1px  1px 0 rgba(255,255,255,0.2),
         1px  1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    width: 40px;
    height: 55px;
    overflow: hidden; 
    text-align: left;
    flex-shrink: 0;
    margin-top: 2px;
}
.ti-pop-no-1 { padding-left: 2px; }

.ti-pop-title {
    font-size: 14.5px;
    line-height: 1.5;
    color: #f3f4f6;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.ti-pop-item:hover .ti-pop-number {
    color: #D4AF37;
    text-shadow: 
        -1px -1px 0 #D4AF37,  
         1px -1px 0 #D4AF37,
        -1px  1px 0 #D4AF37,
         1px  1px 0 #D4AF37;
}
.ti-pop-item:hover .ti-pop-title {
    color: #D4AF37;
}
