.obt-inline-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.obt-inline-video-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 24px;
}
.obt-inline-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.obt-inline-video-trigger img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.obt-inline-video-trigger:hover img,
.obt-inline-video-trigger:focus img {
    transform: scale(1.03);
    filter: brightness(.82);
}
.obt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.18);
}
.obt-play-icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 34px;
    line-height: 1;
    padding-left: 5px;
    box-shadow: 0 10px 24px rgba(0,0,0,.32);
}
.obt-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,.85);
}
.obt-video-holder {
    width: 100%;
}
.obt-inline-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
    background: #000;
}
