/**
 * Custom Icons Frontend Styles
 */

.custom-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.cs-social-links__item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs-social-links__item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.cs-social-links__item a:hover {
    opacity: 0.8;
}

.cs-social-links__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.cs-social-links__icon img {
    max-width: 100%;
    max-height: 100%;
}

.cs-social-links__text {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-icons-container {
        justify-content: center;
    }
}