.video-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--grey-200);
    overflow: hidden; /* Ensures embedded video corners match card radius */
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.video-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Responsive YouTube Embed Wrapper */
.video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--navy-800); /* Placeholder color while loading */
}
.video-embed-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.video-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.video-card-body h3 { color: var(--navy-900); }
.video-date { font-size: 0.85rem; color: #94A3B8; font-weight: 600; margin-bottom: 0.5rem; display: block; }

.elementor-widget-video_card,
.elementor-widget-video_card > .elementor-widget-container{
    height:100%;
}