.videoShowcase {
    --vs-blue: #00388d;
    --vs-orange: #ffb400;
    --vs-text: #344154;
    --vs-border: #dce5ef;
    --vs-bg: #f8fafc;
    color: var(--vs-text);
    background: transparent;
}

.videoShowcase *, .videoShowcase *::before, .videoShowcase *::after { box-sizing: border-box; }
.videoShowcase__inner { display: grid; grid-template-columns: minmax(16rem, 1.25fr) minmax(30rem, 1.6fr); gap: clamp(2.5rem, 6vw, 2rem); }
.videoShowcase__intro { align-self: center; }
.videoShowcase__eyebrow, .videoShowcase__productsLabel, .videoShowcase__videoMeta { margin: 0 0 1.4rem; color: var(--vs-orange); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.videoShowcase__eyebrow::after { display: block; width: 3rem; height: 2px; margin-top: 1rem; background: var(--vs-orange); content: ""; }
.videoShowcase__headline { margin: 0 0 1.25rem; color: var(--vs-blue); font-size: 2.4rem; line-height: 1.08; }
.videoShowcase__introText { max-width: 31rem; margin: 0; font-size: 1rem; line-height: 1.6; }

.videoShowcase__videoCard { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; width: 100%; min-height: clamp(22rem, 36vw, 25rem); padding: clamp(2rem, 4vw, 4rem); overflow: hidden; color: inherit; text-align: left; background: linear-gradient(135deg, #fff 20%, var(--vs-bg)); border: 1px solid var(--vs-border); border-radius: .35rem; cursor: pointer; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.videoShowcase__videoCard::after { position: absolute; right: -5rem; bottom: -5rem; width: 15rem; height: 15rem; border: 1px solid color-mix(in srgb, var(--vs-blue) 18%, transparent); border-radius: 50%; content: ""; transition: transform .55s ease; }
.videoShowcase__videoCard:hover, .videoShowcase__videoCard:focus-visible { border-color: color-mix(in srgb, var(--vs-blue) 45%, white); box-shadow: 0 1rem 2.5rem rgb(0 56 141 / 8%); transform: translateY(-3px); }
.videoShowcase__videoCard:hover::after { transform: scale(1.12); }
.videoShowcase__videoCard:focus-visible { outline: 3px solid color-mix(in srgb, var(--vs-orange) 55%, white); outline-offset: 4px; }
.videoShowcase__play { position: relative; z-index: 1; display: grid; width: clamp(5.5rem, 8vw, 7rem); aspect-ratio: 1; place-items: center; color: var(--vs-orange); border: 1.5px solid var(--vs-blue); border-radius: 50%; transition: color .25s ease, background-color .25s ease, transform .35s ease; }
.videoShowcase__play::after { position: absolute; inset: .55rem; border: 1px solid var(--vs-border); border-radius: inherit; content: ""; }
.videoShowcase__play svg { width: 2.1rem; fill: currentColor; }
.videoShowcase__videoCard:hover .videoShowcase__play { color: #fff; background: var(--vs-orange); border-color: var(--vs-orange); transform: scale(1.04); }
.videoShowcase__videoContent { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.videoShowcase__videoMeta { margin-bottom: .9rem; }
.videoShowcase__videoHeadline { 
    max-width: 19ch;
    color: var(--vs-blue);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1;
}
.videoShowcase__videoText { max-width: 34rem; margin-top: 1rem; font-size: 1.05rem; line-height: 1.55; }
.videoShowcase__videoCta { margin-top: 1.65rem; color: var(--vs-blue); font-weight: 700; }

.videoShowcase__products { grid-column: 1 / -1; margin-top: clamp(1rem, 2vw, 2rem); }
.videoShowcase__productsLabel { margin-bottom: 1rem; color: var(--vs-blue); }
.videoShowcase__productGrid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--vs-border); border-radius: .35rem;background-color:#fff; }
.videoShowcase__product { display: grid; grid-template-columns: minmax(7rem, 42%) 1fr; gap: 1.25rem; align-items: center; min-height: 12rem; padding: 29px; }
.videoShowcase__product + .videoShowcase__product { border-left: 1px solid var(--vs-border); }
.videoShowcase__productImage { width: 100%; height: 8rem; object-fit: contain; transition: transform .35s ease; }
.videoShowcase__product:hover .videoShowcase__productImage { transform: translateY(-3px); }
.videoShowcase__index { display: block; margin-bottom: .65rem; color: var(--vs-orange); font-size: .78rem; font-weight: 700; }
.videoShowcase__index::after { display: inline-block; width: 1.8rem; height: 1px; margin-left: .65rem; vertical-align: middle; background: var(--vs-orange); content: ""; }
.videoShowcase__product h3 { margin: 0; color: var(--vs-blue); font-size: 1.2rem; }

.videoShowcase__dialog { margin:5% auto; width: min(72rem, calc(100% - 2rem)); max-width: none; padding: 0; overflow: visible; background: #000; border: 0; border-radius: .35rem; box-shadow: 0 2rem 6rem rgb(0 0 0 / 35%); }
.videoShowcase__dialog::backdrop { background: rgb(0 17 43 / 82%); backdrop-filter: blur(4px); animation: vsFade .2s ease-out; }
.videoShowcase__dialog[open] { animation: vsEnter .25s ease-out; }
.videoShowcase__playerWrap { aspect-ratio: 16 / 9; }
.videoShowcase__player { display: block; width: 100%; height: 100%; background: #000; }
.videoShowcase__close { position: absolute; z-index: 2; top: -1rem; right: -1rem; display: grid; width: 2.75rem; height: 2.75rem; place-items: center; color: var(--vs-blue); font-size: 1.8rem; line-height: 1; background: #fff; border: 1px solid var(--vs-border); border-radius: 50%; cursor: pointer; }
.videoShowcase__close:focus-visible { outline: 3px solid var(--vs-orange); outline-offset: 3px; }
.videoShowcase__dialog video {
    max-width:none;
}

@keyframes vsFade { from { opacity: 0; } }
@keyframes vsEnter { from { opacity: 0; transform: translateY(.75rem) scale(.985); } }

@media (max-width: 62rem) {
    .videoShowcase__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .videoShowcase__headline { max-width: 16ch; }
    .videoShowcase__products { grid-column: auto; }
    .videoShowcase__productGrid { grid-template-columns: 1fr; }
    .videoShowcase__product + .videoShowcase__product { border-top: 1px solid var(--vs-border); border-left: 0; }
}

@media (max-width: 40rem) {
    .videoShowcase__videoCard { grid-template-columns: 1fr; min-height: 0; }
    .videoShowcase__play { width: 5rem; }
    .videoShowcase__product { grid-template-columns: 7rem 1fr; }
    .videoShowcase__close { top: .5rem; right: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .videoShowcase *, .videoShowcase *::before, .videoShowcase *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

