.opinfopopup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.opinfopopup-box {
    position: relative;
    background: #fff;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    box-sizing: border-box;
}

.opinfopopup-body {
    padding: 26px 24px 64px;
}

.opinfopopup-close {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #444;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opinfopopup-close:hover {
    color: #000;
}

.opinfopopup-image {
    display: block;
    max-width: 100%;
    margin: 0 auto 16px;
}

.opinfopopup-image--fullbleed {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    margin: 0 0 16px;
}

.opinfopopup-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
}

.opinfopopup-content {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.opinfopopup-cta {
    display: inline-block;
    padding: 10px 22px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.opinfopopup-cta:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .opinfopopup-body {
        padding: 20px 16px 58px;
    }

    .opinfopopup-title {
        font-size: 18px;
    }
}
