.rvr-pdf-viewer {
    width: 100%;
    border: 1px solid rgba(13, 71, 79, 0.15);
    overflow: hidden;
}

/* iframe — alleen op desktop */
.rvr-pdf-viewer__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: none;
}

/* Mobile CTA — verborgen op desktop */
.rvr-pdf-viewer__mobile-cta {
    display: none;
}

@media (max-width: 767px) {
    .rvr-pdf-viewer {
        display: flex;
        justify-content: center;
        border: none;
        background: transparent;
    }

    .rvr-pdf-viewer__iframe {
        display: none;
    }

    .rvr-pdf-viewer__mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        padding: 1rem 2rem;
        margin: 1.5rem auto;
        background-color: rgba(var(--color-marine-blue));
        color: rgb(255, 255, 255) !important;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none !important;
        text-align: center;
        border-radius: 999px;
    }

    .rvr-pdf-viewer__mobile-cta:hover {
        color: rgb(255, 255, 255) !important;
        text-decoration: none !important;
        background-color: rgba(var(--color-marine-blue-hover));
    }
}
