/* ===================================================================
 * STYLES FOR: NPL Social Followers Counter Widget
 * =================================================================== */

.npl-social-counter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates a 2-column grid */
    gap: 10px; /* Space between grid items */
}

.npl-social-item {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.npl-social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.npl-social-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.npl-social-info {
    line-height: 1.2;
}

.npl-social-count {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.npl-social-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* --- Brand Colors --- */
.npl-social-facebook { background-color: #3b5998; }
.npl-social-twitter { background-color: #1da1f2; }
.npl-social-youtube { background-color: #cd201f; }
.npl-social-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .npl-social-counter-wrapper {
        /* On small screens, stack them in a single column */
        grid-template-columns: 1fr; 
    }
}