/**
 * Footer Menu Styles
 * Styling cho WordPress menu trong footer
 */

/* Footer Menu List Styles */
.footer-widget .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget .footer-menu li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-widget .footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-widget .footer-menu a:hover {
    color: #e74c3c;
}

/* Responsive Adjustments for Footer Menu */
@media (max-width: 767px) {
    .footer-widget .footer-menu li {
        margin-bottom: 8px;
        font-size: 14px;
    }
}
