/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.tax-expand-wrapper{
    background:#f2f5f7;
    padding:40px;
    border-radius:16px;
    text-align:center;
}

.tax-expand-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:48px;
    list-style:none;
    margin:0;
}

/* ≥ 1200 px (lub inna granica) — na siłę 6 równych kolumn */
@media (min-width:1200px){
    .tax-expand-list{
        grid-template-columns:repeat(6,1fr);   /* dokładnie sześć */
    }
}
.tax-icon{
    display:block;
    margin:0 auto 12px;
    font-size:48px;
}
/* <-- USUWAMY stary nth-child(n+7)  --------------------------- */

/* --- Przycisk --- */
.tax-expand-btn{
    margin-top:32px;
    font-weight:700;
    background:none;
    border:none;
    cursor:pointer;
}

.tax-expand-list a{
	color:#000;              /* domyślnie czarny */
	text-decoration:none;    /* bez podkreślenia */
	transition:color .2s;    /* delikatna zmiana koloru */
}
/* Hover / focus */
.tax-expand-list a:hover,
.tax-expand-list a:focus{
	color:#00B4F1;           /* niebieski po najechaniu */
}