.newInhalt{
    width: 90vw;
    max-width: 1600px;

    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;

    align-items: stretch;
}

.bannerContainer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.banner{
    width: 100%;
    max-width: 350px;
    height: auto;

    border-radius: 15px;
    border: 2px solid white;
}

.InfoContainer{
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);

    gap: 20px;
}

.Info{
    padding: 20px;

    border: 2px solid white;
    border-radius: 15px;

    backdrop-filter: blur(5px);

    color: white;
    line-height: 1.5;

    overflow-wrap: break-word;
    box-sizing: border-box;
    width: 40vh;
}

.orga {
    white-space: pre-line;
    width: 30%;
}

.orga-card{
    position: relative;
}

.modal{
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.7);
    color: white;
    white-space: pre-line;
    height: 100vh;
    display: flex;

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.mehr-lesen-btn{
    margin-top: 15px;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);

    color: white;
    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mehr-lesen-btn:hover{
    transform: translateY(-2px);

    background: rgba(255,255,255,0.10);

    border-color: rgba(255,255,255,0.25);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.25);
}

.mehr-lesen-btn:active{
    transform: translateY(0);
}

.hidden{
    display: none;
}

.modal-text{
    max-height: 60vh;

    overflow-y: auto;

    padding: 15px;

    border: 2px solid rgba(255,255,255,0.15);

    border-radius: 15px;

    background: rgba(255,255,255,0.03);

    line-height: 1.6;
}

.orga-preview::after{
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background:
        linear-gradient(
            transparent,
            rgba(25,25,25,1)
        );

    pointer-events: none;
}

.orga-preview{
    max-height: 220px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1100px){

    .newInhalt{
        grid-template-columns: 280px 1fr;
    }

}

@media (max-width: 800px){

    .newInhalt{
        display: flex;
        flex-direction: column;
        width: 95vw;
    }

    .banner{
        height: auto;
        max-width: 350px;
        margin: 0 auto;
    }

    .InfoContainer{
        display: flex;
        flex-direction: column;
    }

    .Info{
        width: 100%;
    }

}

#countdown{
    text-align:center;
    font-size:3rem;
    font-weight:800;
    margin:40px 0;
    color :white;
}

#countdown span{
    display:inline-block;
    min-width:70px;
}


.custom-player{
    display:flex;
    align-items:center;
    gap:20px;

    max-width:500px;

    margin:auto;
    padding:20px;

    background:#1e1e1e;
    border-radius:20px;
    color:white;
}

#playBtn{
    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    font-size:1.4rem;
}