/* Container Utama */
.custom-infobox-wrapper {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%; 
    display: flex;
}

/* Efek Hover (Melayang saat disentuh mouse) */
.custom-infobox-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Styling Ikon */
.infobox-icon-container {
    margin-bottom: 20px;
}
.infobox-icon-container i, 
.infobox-icon-container svg {
    font-size: 45px;
    color: #007bff; /* Ganti warna ikon di sini */
    width: 45px;
    height: 45px;
}

/* Styling Judul */
.infobox-title {
    
    font-weight: 700;
    color: #222222;
   
    margin-top: 0;
}

/* Styling Blockquote */
.infobox-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #DDCABC !important; /* Warna garis kutipan */
    padding: 15px 20px;
    margin: 0 0 20px 0;
    text-align: left;
    border-radius: 0 8px 8px 0;
    position: relative;
}
.infobox-quote p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #555555;
    line-height: 1.6;
}
.quote-mark {
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 30px;
    color: rgba(0, 123, 255, 0.2);
    font-family: serif;
    font-weight: bold;
}

/* Styling Teks Area Bawah */
.infobox-content {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    text-align: justify; /* atau jadikan 'center' jika ingin teks di tengah */
}
.infobox-content p {
    margin-bottom: 0;
}