.video-oversigt {
    max-width: 1100px;
    margin: 0 auto;
}

.video-kort {
    background: #fff;
    border: 1px solid #cfcfcf;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.video-top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.video-billede {
    position: relative;
    width: 320px;
    min-width: 280px;
    cursor: pointer;
    flex-shrink: 0;
}

.video-billede img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #bbb;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.video-billede:hover .play-overlay {
    background: rgba(0, 0, 0, 0.28);
}

.play-knap {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.play-knap:before {
    content: "";
    display: block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 28px solid rgba(255, 255, 255, 0.95);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

.video-info {
    flex: 1;
    min-width: 280px;
}

.video-linjer {
    margin-bottom: 16px;
}

.video-linje {
    display: flex;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-label {
    width: 150px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.video-vaerdi {
    color: #333;
    flex: 1;
}

.anbefaling {
    margin-top: 10px;
}

.anbefaling-overskrift {
    font-weight: bold;
    margin-bottom: 8px;
}

.stjerner {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.stjerner input {
    display: none;
}

.stjerner label {
    font-size: 28px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stjerner label:hover,
.stjerner label:hover ~ label,
.stjerner input:checked ~ label {
    color: #d4a300;
}

.beskrivelse-wrapper {
    padding: 0 20px 20px 20px;
}

.beskrivelse-felt {
    background: #fafafa;
    border: 1px solid #d6d6d6;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.beskrivelse-felt:hover {
    background: #f0f0f0;
}

.beskrivelse-overskrift {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
}

.beskrivelse-kort {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    font-size: 14px;
    color: #535353;
}

.beskrivelse-fuld {
    display: none;
    line-height: 1.6;
    font-size: 14px;
    color: #333333;
}

.beskrivelse-felt.aktiv .beskrivelse-kort {
    display: none;
}

.beskrivelse-felt.aktiv .beskrivelse-fuld {
    display: block;
}

.beskrivelse-hint {
    margin-top: 10px;
    font-size: 16px;
    color: #232323;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.aktiv {
    display: flex;
}

.video-modal-indhold {
    position: relative;
    width: min(1200px, 95vw);
    background: #000;
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    background: #000;
}

.video-luk {
    position: absolute;
    top: -42px;
    right: 0;
    background: #fff;
    color: #000;
    border: none;
    font-size: 16px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {
    .video-top {
        flex-direction: column;
    }

    .video-billede {
        width: 100%;
    }

    .video-linje {
        flex-direction: column;
    }

    .video-label {
        width: auto;
        margin-bottom: 2px;
    }
}