.wmediavideo-widget-wrapper,
.wmediavideo-page {
    --wmediavideo-color-bg: #f3f4f6;
    --wmediavideo-color-white: #ffffff;
    --wmediavideo-color-slate-50: #f8fafc;
    --wmediavideo-color-slate-100: #f1f5f9;
    --wmediavideo-color-slate-400: #94a3b8;
    --wmediavideo-color-slate-500: #64748b;
    --wmediavideo-color-slate-600: #475569;
    --wmediavideo-color-slate-700: #334155;
    --wmediavideo-color-slate-800: #1e293b;
    --wmediavideo-color-slate-900: #0f172a;
    --wmediavideo-color-blue-600: #2563eb;
    --wmediavideo-color-blue-700: #1d4ed8;
    --wmediavideo-color-green-600: #16a34a;
    --wmediavideo-color-green-700: #15803d;
    --wmediavideo-color-red-600: #dc2626;
    --wmediavideo-color-red-700: #b91c1c;
    --wmediavideo-color-orange-500: #f97316;
    --wmediavideo-color-black-20: rgba(0, 0, 0, 0.2);
}

.wmediavideo-widget-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: var(--wmediavideo-color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

#wmediavideos-archive-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.wmediavideo-card {
    background-color: var(--wmediavideo-color-white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 300px;
}

@media (min-width: 768px) {
    .wmediavideo-card {
        flex-direction: row;
    }
}

/* Left Column - Visual */
.wmediavideo-card-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wmediavideo-color-slate-900);
}

@media (min-width: 768px) {
    .wmediavideo-card-visual {
        width: 41.666667%;
    }
}

.wmediavideo-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    filter: blur(24px);
    transform: scale(1.1);
    transition: transform 700ms;
}

.wmediavideo-card-visual:hover .wmediavideo-blur-bg {
    transform: scale(1.25);
}

.wmediavideo-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--wmediavideo-color-black-20);
}

.wmediavideo-image-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .wmediavideo-image-container {
        padding: 2rem;
    }
}

.wmediavideo-cover-image {
    width: 100%;
    height: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    transform: scale(1);
    transition-property: transform;
    transition-duration: 500ms;
    margin-bottom: 1rem;
}

.wmediavideo-card-visual:hover .wmediavideo-cover-image {
    transform: scale(1.05);
}

.wmediavideo-duration-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    background-color: rgba(0,0,0,0.7);
    color: #e5e7eb;
}

.wmediavideo-watch-btn {
    display: flex;
    width: 100%;
    background-color: var(--wmediavideo-color-red-600);
    color: var(--wmediavideo-color-white);
    text-align: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 150ms;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.wmediavideo-watch-btn:hover {
    background-color: var(--wmediavideo-color-red-700);
}

/* Right Column - Content */
.wmediavideo-card-content {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .wmediavideo-card-content {
        width: 58.333333%;
        padding: 1.5rem;
    }
}

/* Header Row */
.wmediavideo-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wmediavideo-badge-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wmediavideo-badge {
    background-color: var(--wmediavideo-color-red-600);
    color: var(--wmediavideo-color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wmediavideo-subtitle {
    color: var(--wmediavideo-color-slate-400);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.wmediavideo-content-body a {
    color: var(--wmediavideo-color-red-600);
    text-decoration: none;
}
.wmediavideo-content-body a:visited {
    color: var(--wmediavideo-color-red-600);
}
.wmediavideo-content-body a:hover {
    color: var(--wmediavideo-color-red-700);
}

.wmediavideo-title {
    color: var(--wmediavideo-color-slate-900);
}
.wmediavideo-content-body a:hover .wmediavideo-title {
    color: var(--wmediavideo-color-red-600);
}

/* Title & Excerpt */
.wmediavideo-content-body {
    margin-bottom: 1rem;
}

.wmediavideo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wmediavideo-color-slate-900);
    line-height: 1.25;
    margin-bottom: 0.5rem;
    transition: color 150ms;
    cursor: pointer;
    margin-top: 0;
}

@media (min-width: 768px) {
    .wmediavideo-title {
        font-size: 1.5rem;
    }
}

.wmediavideo-title:hover {
    color: var(--wmediavideo-color-red-700);
}

.wmediavideo-excerpt {
    color: var(--wmediavideo-color-slate-500);
    line-height: 1.375;
    font-size: 0.875rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .wmediavideo-excerpt {
        -webkit-line-clamp: 3;
    }
}

/* Speakers Section */
.wmediavideo-speakers-section {
    background-color: var(--wmediavideo-color-slate-50);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--wmediavideo-color-slate-100);
    margin-bottom: 1rem;
}

.wmediavideo-speakers-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--wmediavideo-color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.wmediavideo-speakers-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .wmediavideo-speakers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.wmediavideo-speaker {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 150ms;
}

.wmediavideo-speaker:hover {
    background-color: var(--wmediavideo-color-white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.wmediavideo-speaker.full-width {
    grid-column: span 1 / span 1;
}

@media (min-width: 640px) {
    .wmediavideo-speaker.full-width {
        grid-column: span 2 / span 2;
    }
}

.wmediavideo-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--wmediavideo-color-white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    object-fit: cover;
    flex-shrink: 0;
}

.wmediavideo-speaker-info {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.wmediavideo-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.wmediavideo-speaker-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wmediavideo-color-slate-800);
}

.wmediavideo-speaker-role {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    line-height: 1;
}

.wmediavideo-role-moderator {
    background-color: var(--wmediavideo-color-orange-500);
    color: var(--wmediavideo-color-white);
}

.wmediavideo-role-guest {
    background-color: var(--wmediavideo-color-slate-400);
    color: var(--wmediavideo-color-white);
}

.wmediavideo-speaker-job {
    font-size: 0.75rem;
    color: var(--wmediavideo-color-slate-600);
    font-weight: 500;
}

.wmediavideo-speaker-company {
    font-size: 0.75rem;
    color: var(--wmediavideo-color-slate-500);
    font-weight: 400;
}

/* Footer */
.wmediavideo-footer {
    padding-top: 0.75rem;
    border-top: 1px solid var(--wmediavideo-color-slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wmediavideo-watch-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--wmediavideo-color-slate-400);
}

.wmediavideo-platform-links {
    display: flex;
    gap: 0.5rem;
}

.wmediavideo-platform-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--wmediavideo-color-white);
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    transition: background-color 150ms;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--wmediavideo-color-slate-900);
}

.wmediavideo-platform-btn:hover {
    background-color: var(--wmediavideo-color-slate-700);
}

.wmediavideo-platform-logo-btn {
    width: 14px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Social Icons */
.wmediavideo-social-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.wmediavideo-social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 150ms;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.wmediavideo-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Brand colors for social icons */
.wmediavideo-social-link.linkedin {
    background-color: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

.wmediavideo-social-link.linkedin:hover {
    background-color: #005885;
}

.wmediavideo-social-link.x-twitter {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.wmediavideo-social-link.x-twitter:hover {
    background-color: #333333;
}

.wmediavideo-social-link.whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.wmediavideo-social-link.whatsapp:hover {
    background-color: #1da851;
}

.wmediavideo-social-link.email {
    background-color: #6b7280;
    color: #ffffff;
    border-color: #6b7280;
}

.wmediavideo-social-link.email:hover {
    background-color: #4b5563;
}

/* Pagination */
.wmediavideo-pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.wmediavideo-page-btn {
    min-width: 40px;
    height: 36px;
    border-radius: 0.5rem;
    background-color: var(--wmediavideo-color-white);
    border: 1px solid var(--wmediavideo-color-red-600);
    color: var(--wmediavideo-color-red-600);
    font-weight: 600;
    cursor: pointer;
}

.wmediavideo-page-btn:hover:not([disabled]):not(.active) {
    background-color: #fef2f2;
    color: var(--wmediavideo-color-red-600);
}

.wmediavideo-page-btn.active {
    background-color: var(--wmediavideo-color-red-600);
    color: var(--wmediavideo-color-white);
    border-color: var(--wmediavideo-color-red-600);
}

.wmediavideo-page-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.wmediavideo-page-btn.prev, .wmediavideo-page-btn.next {
    width: 40px;
    padding: 0;
}

.wmediavideo-pagination.loading {
    opacity: 0.6;
    pointer-events: none;
}

.wmediavideo-ellipsis {
    color: var(--wmediavideo-color-slate-500);
    font-weight: 700;
}

.wmediavideo-page-btn.hidden { display: none; }

/* Custom Scrollbar */
.wmediavideo-speakers-grid::-webkit-scrollbar {
    width: 4px;
}

.wmediavideo-speakers-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.wmediavideo-speakers-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* ============================================
   SINGLE VIDEO PAGE STYLES
   ============================================ */

.wmediavideo-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f3f4f6;
}

.wmediavideo-hero {
    position: relative;
    background-color: #000;
}

.wmediavideo-hero-media {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.wmediavideo-video,
.wmediavideo-video-placeholder {
    width: 100%;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
    display: block;
    background-color: #000;
    object-fit: cover;
}

.wmediavideo-video-placeholder {
    background-size: cover;
    background-position: center;
}

/* Responsive video iframe wrapper for YouTube/Vimeo embeds */
.wmediavideo-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0;
    background-color: #000;
}

.wmediavideo-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
}

.wmediavideo-hero-overlay {
    position: absolute;
    inset: 24px 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 40%);
    border-radius: 6px;
}

.wmediavideo-hero-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 56px;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}

.wmediavideo-hero-title {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.wmediavideo-hero-play-btn {
    border: none;
    border-radius: 9999px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.wmediavideo-hero-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #111827;
    color: #fff;
}

.wmediavideo-hero-duration {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    background-color: rgba(0,0,0,0.7);
    color: #e5e7eb;
}

.wmediavideo-layout {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 0;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #b3b3b3;
}

.wmediavideo-sidebar {
    order: 1;
    background-color: #f9fafb;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.wmediavideo-article {
    order: 2;
}

.wmediavideo-where-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0 0 24px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
}

.wmediavideo-where-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px;
}

.wmediavideo-where-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wmediavideo-where-item + .wmediavideo-where-item {
    margin-top: 0;
}

.wmediavideo-where-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 14px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 150ms;
}

.wmediavideo-where-link:hover {
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.wmediavideo-where-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

/* Platform brand colors */
.wmediavideo-where-icon.icon-youtube { color: #FF0000; }
.wmediavideo-where-icon.icon-apple-tv { color: #555555; }
.wmediavideo-where-icon.icon-samsung-tv { color: #1428A0; }
.wmediavideo-where-icon.icon-fire-tv { color: #FF9900; }
.wmediavideo-where-icon.icon-android-tv { color: #3DDC84; }
.wmediavideo-where-icon.icon-rakuten-tv { color: #BF0000; }
.wmediavideo-where-icon.icon-haystack-news { color: #00A3E0; }

.wmediavideo-platform-logo {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.wmediavideo-where-empty {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px dashed #d1d5db;
}

.wmediavideo-social-card {
    padding-top: 0;
    border-top: none;
}

.wmediavideo-where-card + .wmediavideo-social-card {
    margin-top: 24px;
    padding-top: 24px;
}

.wmediavideo-social-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px;
}

.wmediavideo-article-inner {
    background-color: #ffffff;
    padding: 24px 28px 32px;
    border-radius: 0;
    border: none;
}

.wmediavideo-article-header {
    margin-bottom: 16px;
}

.wmediavideo-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 6px;
}

.wmediavideo-article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.wmediavideo-article-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.wmediavideo-article-body {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.wmediavideo-article-body p {
    margin-bottom: 1em;
}

/* Enhanced speakers section for single page widget */
.wmediavideo-page .wmediavideo-speakers-section {
    background-color: var(--wmediavideo-color-slate-50);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--wmediavideo-color-slate-100);
    margin-top: 1.5rem;
}

.wmediavideo-page .wmediavideo-speakers-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wmediavideo-color-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    margin-top: 0;
}

.wmediavideo-page .wmediavideo-speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.wmediavideo-page .wmediavideo-speaker {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: var(--wmediavideo-color-white);
    border: 1px solid var(--wmediavideo-color-slate-100);
    transition: box-shadow 150ms;
}

.wmediavideo-page .wmediavideo-speaker:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wmediavideo-page .wmediavideo-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    border: 2px solid var(--wmediavideo-color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    flex-shrink: 0;
}

.wmediavideo-page .wmediavideo-speaker-info {
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wmediavideo-page .wmediavideo-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.wmediavideo-page .wmediavideo-speaker-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wmediavideo-color-slate-800);
}

.wmediavideo-page .wmediavideo-speaker-role {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    line-height: 1;
}

.wmediavideo-page .wmediavideo-speaker-job {
    font-size: 0.875rem;
    color: var(--wmediavideo-color-slate-600);
    font-weight: 500;
}

.wmediavideo-page .wmediavideo-speaker-company {
    font-size: 0.875rem;
    color: var(--wmediavideo-color-slate-500);
    font-weight: 400;
}

@media (max-width: 640px) {
    .wmediavideo-page .wmediavideo-speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .wmediavideo-page .wmediavideo-speaker.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .wmediavideo-hero-media {
        padding: 16px 10px 20px;
    }

    .wmediavideo-hero-overlay {
        inset: 16px 10px 0 10px;
        border-radius: 6px 6px 0 0;
    }

    .wmediavideo-hero-content {
        position: static;
        max-width: 100%;
        margin-top: 12px;
        padding: 0 4px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        color: #111827;
        text-shadow: none;
    }

    .wmediavideo-hero-title {
        font-size: 1.4rem;
    }

    .wmediavideo-hero-play-btn {
        padding: 8px 16px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
    }

    .wmediavideo-hero-duration {
        top: 20px;
        right: 20px;
        font-size: 0.7rem;
    }

    .wmediavideo-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .wmediavideo-sidebar {
        order: 2;
        border-right: none;
        border-top: 1px solid #e5e7eb;
        padding: 16px;
    }

    .wmediavideo-article {
        order: 1;
    }

    .wmediavideo-article-inner {
        padding: 18px 16px 24px;
    }
}

/* ============================================
   FREE WIDGET - VIDEOS GRID (Bloomberg Style)
   ============================================ */

.wmediavideo-free-container {
    padding: 40px;
    background-color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wmediavideo-free-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
}

.wmediavideo-free-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wmediavideo-free-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 150ms;
}

.wmediavideo-free-card:hover {
    transform: translateY(-2px);
}

.wmediavideo-free-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1f2937;
    margin-bottom: 12px;
}

.wmediavideo-free-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms;
}

.wmediavideo-free-card:hover .wmediavideo-free-thumb img {
    transform: scale(1.05);
}

.wmediavideo-free-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.wmediavideo-free-play {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 150ms;
}

.wmediavideo-free-card:hover .wmediavideo-free-play {
    transform: scale(1.1);
}

.wmediavideo-free-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.wmediavideo-free-content {
    padding: 0 4px;
}

.wmediavideo-free-video-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 150ms;
}

.wmediavideo-free-subtitle {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .wmediavideo-free-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wmediavideo-free-container {
        padding: 20px;
    }
    
    .wmediavideo-free-grid {
        grid-template-columns: 1fr;
    }
    
    .wmediavideo-free-title {
        font-size: 1.125rem;
    }
}
