.whiw-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 12px 24px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    color: #2d2f31;
    border-radius: 50px;
    transition: background 0.2s ease;
    box-shadow: none;
}

.whiw-trigger:hover {
    background: rgba(22, 59, 107, 0.08); /* svarer til #163B6B14 */
    color: #163B6B;
}








.whiw-trigger:focus,
.whiw-trigger:active {
    background: none;
    box-shadow: none;
    outline: none;
    background: rgba(22, 59, 107, 0.08); /* svarer til #163B6B14 */
    color: #163B6B;
}

.whiw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal */

.whiw-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.whiw-modal.active {
    display: flex;
}

.whiw-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.whiw-content {
    position: relative;
    width: 90%;
    max-width: 1140px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.whiw-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.whiw-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.whiw-close span,
.whiw-close::before {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whiw-video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.whiw-video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

body.whiw-modal-open {
    overflow: hidden;
    touch-action: none;
    position: fixed;
    width: 100%;
}


@media (max-width: 767px) {
    .whiw-trigger {
        width: 100%;
        justify-content: center;
    }
}