/* ========================================================= */
/* GLOBAL LAYOUT */
/* ========================================================= */

html,
body,
#page,
.site,
.site-content,
.ast-container,
.content-area{
    background:#fafafa !important;
}

.ast-container,
.site-content .ast-container{
    display:block !important;
    max-width:1400px !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:24px !important;
    padding-right:24px !important;
}

.site-content,
.content-area{
    width:100% !important;
}

/* ========================================================= */
/* GLOBAL GRIDS */
/* ========================================================= */

.tools-grid,
#tools-results{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:24px;
}

/* ========================================================= */
/* SECTION HEAD */
/* ========================================================= */

.section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.section-head h2{
    font-size:42px;
    line-height:1.12;
    color:#111827;
    margin:0;
}

.section-head p{
    color:#6b7280;
    margin:8px 0 0;
}

.section-link,
.section-view-link{
    font-size:16px;
    font-weight:800;
    color:#2563eb;
    text-decoration:none !important;
}

.section-link:hover,
.section-view-link:hover{
    color:#1d4ed8;
}

/* ========================================================= */
/* GLOBAL CTA */
/* ========================================================= */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:56px;
    padding:0 24px;
    border-radius:18px;
    background:linear-gradient(135deg,#000000,#222222);
    color:#ffffff !important;
    text-decoration:none !important;
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:.2s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(0,0,0,0.25);
}

/* ========================================================= */
/* UTILITIES */
/* ========================================================= */

.text-center{
    text-align:center;
}

.hidden{
    display:none !important;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.rounded{
    border-radius:20px;
}

.shadow{
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:768px){

    .ast-container,
    .site-content .ast-container{
        padding-left:14px !important;
        padding-right:14px !important;
    }

    .tools-grid,
    #tools-results{
        grid-template-columns:1fr;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-head h2{
        font-size:30px;
    }
}