/*
 * Theme Name:   Pencil Group Child
 * Theme URI:    https://localis.vn
 * Description:  Child theme for Pencil Group — page-specific CSS & JS overrides.
 * Author:       Chuong Dev
 * Author URI:   https://localis.vn
 * Template:     pencil-group
 * Version:      1.0.0
 * Text Domain:  pencil-child
 * License:      GPL-2.0-or-later
 */

/* ============================================================
   Custom page / component styles go here.
   Parent theme styles load automatically via functions.php.
   ============================================================ */

/* =======================================================
LOCALIS FOOTER - SITEMAP WIDGET STYLES
======================================================= */
.pencil-footer-widget.widget_nav_menu {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Định dạng tiêu đề "SITEMAP" */
.pencil-footer-widget .widget-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #a4b39b; /* Màu xanh lá nhạt, đồng bộ với chữ Localis Marketing ở cột 1 */
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
    border: none; /* Xóa border mặc định của theme nếu có */
    padding-bottom: 0;
}

/* Xóa định dạng list mặc định của `ul` */
.pencil-footer-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Khoảng cách các dòng */
.pencil-footer-widget .menu li {
    margin-bottom: 0;
}

.pencil-footer-widget .menu li:last-child {
    margin-bottom: 0;
}

/* Định dạng thẻ link `a` */
.pencil-footer-widget .menu a {
    color: #c9d4c1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

/* Hiệu ứng Hover - Đổi màu cam đất và nhích nhẹ sang phải */
.pencil-footer-widget .menu a:hover {
    color: #ba5d3c; 
    transform: translateX(4px);
}