/* Zentrale ANBITA-App-Downloadseite */
.apps-visually-hidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
.apps-page{
    display:block;
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:20px 22px 26px;
    box-sizing:border-box;
}
.apps-hero{
    display:block;
    width:100%;
    margin:0 auto 26px;
}
.apps-hero-image{
    display:block;
    width:100%;
    max-width:1200px;
    height:auto;
    margin:0 auto;
    border-radius:22px;
    box-shadow:0 14px 34px rgba(8,20,52,.18);
}
.apps-hero-image-dark{
    display:none;
}
html.dark-mode .apps-hero-image-light,
body.dark-mode .apps-hero-image-light{
    display:none;
}
html.dark-mode .apps-hero-image-dark,
body.dark-mode .apps-hero-image-dark{
    display:block;
}
.apps-product{
    padding:26px;
    border:1px solid rgba(15,79,216,.18);
    border-radius:22px;
    background:rgba(255,255,255,.96);
    box-shadow:0 12px 34px rgba(15,45,90,.12);
}
.apps-product-heading{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:22px;
    margin:0 0 28px;
    text-align:left;
}
.apps-product-logo{
    display:block;
    flex:0 0 150px;
    width:150px;
    height:150px;
    max-width:100%;
    object-fit:contain;
    border-radius:24px;
}
.apps-product-heading h2{
    margin:0 0 8px;
    font-size:clamp(26px,3.2vw,38px);
    line-height:1.1;
}
.apps-product-heading p{
    max-width:650px;
    margin:0;
    font-size:17px;
    line-height:1.55;
}
.apps-download-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    align-items:stretch;
}
.apps-download-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:0;
    padding:22px 18px;
    border:1px solid rgba(15,79,216,.20);
    border-radius:18px;
    background:#f8fbff;
    text-align:center;
}
.apps-platform-logo{
    display:block;
    width:160px;
    height:160px;
    max-width:100%;
    margin:0 auto 16px;
    object-fit:contain;
    border-radius:24px;
}
.apps-download-card h3{
    margin:0 0 10px;
    font-size:24px;
    line-height:1.2;
}
.apps-download-card p{
    margin:0 0 18px;
    line-height:1.55;
}
.apps-download-button-group{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:10px;
    margin-top:auto;
}
.apps-download-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:48px;
    margin-top:auto;
    padding:11px 14px;
    border:2px solid #111;
    border-radius:12px;
    background:#ffd21f;
    color:#111;
    font-weight:900;
    line-height:1.25;
    text-decoration:none;
    box-sizing:border-box;
}
.apps-download-button:hover,
.apps-download-button:focus-visible{
    background:#ffe36b;
}
.apps-download-button:focus-visible{
    outline:3px solid #0f4fd8;
    outline-offset:3px;
}
.apps-download-button.is-disabled{
    border-color:#aab2c0;
    background:#e4e8ef;
    color:#616b79;
    cursor:not-allowed;
}
html.dark-mode .apps-product,
body.dark-mode .apps-product{
    border-color:rgba(255,255,255,.18);
    background:#131d2d;
    color:#fff;
}
html.dark-mode .apps-download-card,
body.dark-mode .apps-download-card{
    border-color:rgba(255,255,255,.18);
    background:#1a2638;
    color:#fff;
}
@media(max-width:980px){
    .apps-page{
        padding-left:16px;
        padding-right:16px;
    }
    .apps-hero{
        margin-bottom:22px;
    }
    .apps-download-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .apps-download-card:last-child{
        grid-column:1/-1;
        max-width:520px;
        width:100%;
        justify-self:center;
    }
}
@media(max-width:760px){
    .apps-page{
        padding:10px 8px 18px;
    }
    .apps-hero{
        margin-bottom:16px;
    }
    .apps-hero-image{
        border-radius:16px;
    }
    .apps-product{
        padding:18px 12px;
        border-radius:17px;
    }
    .apps-product-heading{
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:12px;
        margin-bottom:20px;
        text-align:left;
    }
    .apps-product-logo{
        flex-basis:auto;
        width:138px;
        height:138px;
    }
    .apps-download-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .apps-download-card:last-child{
        grid-column:auto;
        max-width:none;
    }
    .apps-download-card{
        padding:18px 14px;
    }
    .apps-platform-logo{
        width:150px;
        height:150px;
    }
}
body.anbita-app .apps-page{
    max-width:none;
    padding:10px 8px 18px;
}
body.anbita-app .apps-hero{
    margin-bottom:16px;
}
