.mcpg-sv{
    --mcpg-orange:#f58220;
    --mcpg-text:#232323;
    --mcpg-muted:#666;
    --mcpg-border:#e9e9e9;
    position:relative;
    left:50%;
    width:100vw;
    max-width:100vw;
    margin-left:-50vw;
    padding:30px;
    background:#fff;
    color:var(--mcpg-text);
    font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.mcpg-sv *{
    box-sizing:border-box;
}

.mcpg-sv__inner{
    width:100%;
    max-width:1500px;
    margin:0 auto;
}

.mcpg-sv__inner--split{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(420px,.85fr);
    gap:24px;
    align-items:stretch;
}

.mcpg-sv__about,
.mcpg-sv__video-card{
    min-width:0;
    border:1px solid var(--mcpg-border);
    border-radius:12px;
    background:#fff;
    box-shadow:0 7px 24px rgba(0,0,0,.04);
}

.mcpg-sv__about{
    padding:30px 32px;
}

.mcpg-sv__eyebrow{
    display:block;
    margin-bottom:8px;
    color:var(--mcpg-orange);
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.mcpg-sv h2{
    margin:0!important;
    color:var(--mcpg-text)!important;
    font-size:clamp(24px,2vw,34px)!important;
    line-height:1.15!important;
    font-weight:700!important;
    letter-spacing:-.025em!important;
}

.mcpg-sv__text{
    margin-top:18px;
    color:var(--mcpg-muted);
    font-size:15px;
    line-height:1.75;
}

.mcpg-sv__text p{
    margin:0 0 15px!important;
    color:inherit!important;
    font-size:inherit!important;
    line-height:inherit!important;
}

.mcpg-sv__text p:last-child{
    margin-bottom:0!important;
}

.mcpg-sv__video-card{
    padding:20px;
    display:flex;
    flex-direction:column;
}

.mcpg-sv__video-heading{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.mcpg-sv__video-heading>div>span{
    display:block;
    margin-bottom:2px;
    color:#888;
    font-size:10px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.mcpg-sv__video-heading h2{
    font-size:20px!important;
}

.mcpg-sv__play{
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:50%;
    background:rgba(245,130,32,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.mcpg-sv__play svg{
    width:20px;
    height:20px;
    margin-left:2px;
    fill:var(--mcpg-orange);
}

.mcpg-sv__video{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:9px;
    background:#111;
}

.mcpg-sv__video iframe,
.mcpg-sv__video video,
.mcpg-sv__video embed,
.mcpg-sv__video object{
    position:absolute;
    inset:0;
    width:100%!important;
    height:100%!important;
    border:0;
}

.mcpg-sv__video-fallback{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    text-align:center;
}

.mcpg-sv__video-fallback a{
    color:#fff!important;
    font-size:14px;
    font-weight:700;
    text-decoration:none!important;
}

.mcpg-sv__video-fallback a:hover{
    color:var(--mcpg-orange)!important;
}

.mcpg-sv__inner--text-only .mcpg-sv__about{
    width:100%;
}

.mcpg-sv__inner--video-only .mcpg-sv__video-card{
    width:min(900px,100%);
    margin:0 auto;
}

@media(max-width:1050px){
    .mcpg-sv__inner--split{
        grid-template-columns:1fr;
    }
}

@media(max-width:700px){
    .mcpg-sv{
        padding:20px 15px;
    }

    .mcpg-sv__about{
        padding:23px 20px;
    }

    .mcpg-sv__video-card{
        padding:15px;
    }

    .mcpg-sv__text{
        font-size:14px;
        line-height:1.7;
    }
}
