/*
Theme Name: Alzzio Theme
Theme URI: https://alzzio.com
Author: Alzzio
Description: Tema padre ligero y estable para la plataforma Alzzio. La personalización del sitio debe realizarse en Alzzio Theme Child.
Version: 1.0.0
Text Domain: alzzio-theme
Requires at least: 6.0
Requires PHP: 8.0
*/

:root{
    --alzzio-content-width:1200px;
}

html{
    box-sizing:border-box;
}

*,
*:before,
*:after{
    box-sizing:inherit;
}

body{
    margin:0;
}

.alzzio-theme-site{
    min-height:100vh;
}

.alzzio-theme-content{
    min-height:50vh;
}


/* =========================================
   PÁGINA 404
========================================= */

.alzzio-theme-404{
    width:calc(100% - 28px);
    max-width:1200px;
    min-height:60vh;
    margin:0 auto;
    padding:80px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.alzzio-theme-404 h1{
    margin:0 0 16px;
    padding:0;

    font-size:clamp(32px,5vw,64px);
    font-weight:800;
    line-height:1.05;
}

.alzzio-theme-404 p{
    margin:0;
    padding:0;

    font-size:18px;
    line-height:1.6;
}


/* =========================================
   PÁGINA 404 - MÓVIL
========================================= */

@media(max-width:720px){

    .alzzio-theme-404{
        width:calc(100% - 28px);
        min-height:65vh;
        padding:48px 14px;
    }

    .alzzio-theme-404 h1{
        margin-bottom:12px;
        font-size:32px;
        line-height:1.1;
    }

    .alzzio-theme-404 p{
        font-size:16px;
        line-height:1.5;
    }

}