/* Infographic Sidebar Widget - Modern Style */
.info-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.info-header {
    padding: 16px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.info-header.bl {
    border-bottom: none; /* Removed as per HTML spec */
}

.info-header::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: #1e73be;
    border-radius: 2px;
}

.info-img-wrap {
    width: 100%;
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.info-card:hover .info-img-wrap img {
    transform: scale(1.05);
}

.info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 10px 15px;
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(4px);
}

.info-footer {
    padding: 15px;
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.6;
    background: #fff;
}
