/* CSS per il widget di interlinking - Tema Aster
   Salvare questo file come: assets/css/interlinking-widget.css */

.aster-interlinking-widget {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.aster-interlinking-widget .widget-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.aster-interlinking-widget .widget-title i {
    margin-right: 10px;
    color: #dd3333;
}

.aster-interlinking-widget .aster-related-links {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.aster-interlinking-widget .aster-related-links li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.aster-interlinking-widget .aster-related-links li:before {
    content: "\f054";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #dd3333;
}

.aster-interlinking-widget .aster-related-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.aster-interlinking-widget .aster-related-links a:hover {
    color: #dd3333;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .aster-interlinking-widget {
        padding: 15px;
    }
}