/*
Theme Name: Intelekto
Theme URI: https://intelekto.com.br
Author: Intelekto
Author URI: https://intelekto.com.br
Description: Tema personalizado para Intelekto - Assessoria Contábil, Fiscal e Trabalhista
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: intelekto
Tags: custom, business, consultoria
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Links Úteis - Grid de duas colunas */
.list-links--two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

@media (max-width: 767px) {
    .list-links--two-columns {
        grid-template-columns: 1fr;
    }
}