/*
 * TIROL24 Index-Look für öffentliche Unterseiten
 * Bewusst vorsichtig: überschreibt keine Logik, nur Grundoptik.
 */

body.t24-index-look{
    background:#eef1f4;
    color:#101820;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.45;
    margin:0;
}

body.t24-index-look a{
    color:inherit;
}

body.t24-index-look .t24-simple-nav{
    background:#101820;
    color:#fff;
    padding:0;
}

body.t24-index-look .t24-simple-nav-inner{
    max-width:1180px;
    margin:0 auto;
    min-height:70px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

body.t24-index-look .t24-simple-brand{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:900;
}

body.t24-index-look .t24-simple-links{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

body.t24-index-look .t24-simple-links a{
    color:#fff;
    text-decoration:none;
    font-weight:800;
}

body.t24-index-look main,
body.t24-index-look .container,
body.t24-index-look .wrap,
body.t24-index-look .content{
    max-width:1180px;
}

body.t24-index-look h1{
    color:#101820;
}

body.t24-index-look .card,
body.t24-index-look .box,
body.t24-index-look section.card,
body.t24-index-look article.card{
    background:#fff;
    border:1px solid #d8dde2;
    border-radius:14px;
}

body.t24-index-look button,
body.t24-index-look .btn,
body.t24-index-look input[type="submit"],
body.t24-index-look a.button{
    border-radius:7px;
    font-weight:900;
}

body.t24-index-look .t24-simple-footer{
    background:#101820;
    color:#fff;
    margin-top:40px;
    padding:30px 18px;
}

body.t24-index-look .t24-simple-footer a{
    color:#fff;
}

body.t24-index-look .t24-simple-footer-inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:24px;
}

@media(max-width:900px){
    body.t24-index-look .t24-simple-nav-inner{
        display:block;
        padding:16px 18px;
    }

    body.t24-index-look .t24-simple-links{
        margin-top:14px;
    }

    body.t24-index-look .t24-simple-footer-inner{
        grid-template-columns:1fr;
    }
}