.social-widget {
    width: 100%;
    max-width: 250px;
    background-color: #1c1c1c; /* matches the block exactly */
    padding: 15px;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.social-widget h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ff8c00; /* orange header exactly like screenshot */
}

.social-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-widget li {
    margin-bottom: 10px;
}

.social-widget li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.social-widget li a:hover {
    background-color: rgba(255,255,255,0.05); /* subtle hover highlight */
}

.social-widget li img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 4px;
}

.social-widget .label {
    font-weight: bold;
    font-size: 14px;
}

.social-widget .count {
    font-size: 12px;
    color: #aaa; /* muted gray counts exactly */
}