.spanAttention{
    color: red;
    font-size: 18px;
    text-decoration: underline;
}

.imgPWzurueck .imgPVNeueStunden .imgDP_Aenderung{
    margin-top: 1.8rem ;
    width: 100% ;
}

.announcement {
    background-color: #171845;
    color: darkgray;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.6; }
}

.hr-custom {
    height: 2px;
    color: #000000;
    margin-bottom: 3.8rem;
    width: 100%;
}

.ueberschriften{
    font-size: 20px;
    text-decoration: underline;
}

.spanRot{
    color: red;
    font-weight: bold;
}

.imgStyle{
    border: solid 6px #053A85;
    border-radius: 25px;
    margin: 30px 0 30px 0;
    width: 90%;
}

.pdf-link {
    text-decoration: none;
    font-size: 20px;
}

.pdf-icon {
    color: red; /* Rot für das Icon */
    margin-right: 6px;
}

.pdf-text {
    color: #053A85; /* Blau für den Text */
}

.pdf-link:hover .pdf-text {
    text-decoration: underline;
}

.p_mH1{
    text-align: center;
}

.personal-nav {
    margin-top: 1rem;
}

.personal-nav-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

.personal-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color:#171846;
    transition: width 0.25s ease;
}

.personal-nav-link:hover::after {
    width: 100%;
}

.personal-nav-link:focus {
    outline: none;
    color: #171846;
}

.personal-section {
    margin-top: 1.8rem;
    scroll-margin-top: 80px;
}

.p_img{
    width: 90%;
}

.hilfe-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
}

.hilfe-bild {
    width: 45%;
    max-width: 500px;
    height: auto;
}

.hilfe-text {
    width: 55%;
    text-align: justify;
    line-height: 1.6;
}

.video-card{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
    align-items: start;
}

.video-thumb{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
}

.video-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05);
}

.play-badge{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.play-badge::before{
    content: "";
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.play-badge::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255,255,255,0.9);
}

/* Modal */
.video-modal{
    border: 0;
    padding: 0;
    width: min(920px, 92vw);     /* <-- hier stellst du die Größe ein */
    background: transparent;
}

.video-modal::backdrop{
    background: rgba(0,0,0,0.65);
}

.modal-inner{
    background: rgba(20,20,20,0.95);
    border-radius: 14px;
    overflow: hidden;
    padding: 14px;
}

.modal-inner video{
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.modal-close{
    position: absolute;
    transform: translate(10px, -10px);
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(0,0,0,0.55);
    color: white;
}


@media (max-width: 720px){
    .video-card{ grid-template-columns: 1fr; }
}


