.sv-frame-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 109, 146, 0.08);
    border: 1px solid rgba(15, 109, 146, 0.05);
}

.sv-frame {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateZ(0); /* For Safari border-radius bug with iframe */
}

.sv-frame .ratio iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.tiski-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0 2.5rem;
}

.tiski-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 109, 146, 0.2) 20%, rgba(15, 109, 146, 0.4) 50%, rgba(15, 109, 146, 0.2) 80%, transparent 100%);
    border-radius: 2px;
    transform: translateY(-50%);
}

.divider-text {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: #f8fafc;
    color: #0f6d92;
    font-weight: 700;
    font-size: 1.35rem;
    border-radius: 50px;
    border: 1px solid rgba(15, 109, 146, 0.15);
    box-shadow: 0 4px 12px rgba(15, 109, 146, 0.05);
    z-index: 1;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .sv-frame-container {
        padding: 0.75rem;
        border-radius: 16px;
    }
    
    .sv-frame {
        border-radius: 12px;
    }
    
    .divider-text {
        font-size: 1.1rem;
        padding: 0.4rem 1.2rem;
    }
}
