  /* Container wrapper */
  .yvm-videos {
      margin-bottom: 30px;
      background: white;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  }

  /* Enhanced video card */
  .yvm-video {
      display: flex;
      flex-direction: row;
      gap: 0;
      /* background: #ffffff; */

      margin-bottom: 32px;
      position: relative;
      min-height: unset;
  }

  /* 
  .yvm-video:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.15),
          0 5px 20px rgba(0, 0, 0, 0.1);
  } */

  .yvm-video::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      /* background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
      border-radius: 20px 20px 0 0;
  }

  /* Enhanced title section */
  .yvm-title {
      flex: 0 0 40%;
      display: flex;
      width: 100%;
      max-width: 100%;

      flex-direction: column;
      justify-content: start;
      padding: 15px 0px 0px 15px;
      background: #ffffff;
      color: white;
      margin-left: 15px;
      border: none;
      border-radius: 20px;
      box-shadow:
          0 2px 6px rgba(0, 0, 0, 0.1),
          0 1px 8px rgba(0, 0, 0, 0.05);

  }

  .yvm-title::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      /* background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); */
      transform: rotate(45deg);
      transition: all 0.6s ease;
  }

  .yvm-video:hover .yvm-title::before {
      transform: rotate(45deg) translate(20px, 20px);
  }

  .yvm-title::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      /* background: linear-gradient(to bottom,
              transparent 0%,
              rgba(255, 255, 255, 0.3) 20%,
              rgba(255, 255, 255, 0.3) 80%,
              transparent 100%); */
  }

  .yvm-title h3 {
      font-size: clamp(1.5rem, 4vw, 2.3rem);
      font-weight: 700;
      color: #437FDE;
      z-index: 2;
      align-self: center;
  }

  .yvm-title-content {
      position: relative;
      z-index: 2;
  }

  .yvm-title-content p {
      font-size: 15px;
      color: #002050;
      margin-top: 0px !important;
      padding: 0px 10px 0px 10px;
  }

  .yvm-button-content {
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      margin: auto;
      background-color: #ffffff;

      border: #eef4f8 1px solid;
      width: 20%;
      height: 10%;
      box-shadow:
          0 2px 6px rgba(0, 0, 0, 0.1),
          0 1px 8px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
  }

  .yvm-button-content p {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 400;
      color: #60a3e2;
  }

  .yvm-button-content:hover {
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      margin: auto;
      background-color: #d7dadd;
      border: #ffffff 1px solid;
      width: 20%;
      height: 10%;
      box-shadow:
          0 2px 6px rgba(0, 0, 0, 0.1),
          0 1px 8px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
  }

  .yvm-button-content p:hover {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
  }

  /* Enhanced content section */
  .yvm-content {
      flex: 0 0 60%;
      width: 100%;
      max-width: 100%;
      align-items: center;
      box-sizing: border-box;
      justify-content: center;
      padding-right: 25px;
      padding-left: 15px;
      height: 70%;
  }

  .yvm-content::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      bottom: 24px;

      border-radius: 12px;
      pointer-events: none;
      transition: all 0.3s ease;
  }

  .yvm-video:hover .yvm-content::before {
      border-color: rgba(102, 126, 234, 0.4);
  }

  /* Enhanced iframe styling */
  .yvm-content iframe {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      /* max-height: 376px; */
      border-radius: 20px;

      border: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
  }

  .yvm-fb-video {
      width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .yvm-fb-video .fb-video,
  .yvm-fb-video iframe {
      width: 100% !important;
      max-width: 100% !important;
      /* height: auto; */
      display: block;
  }

  /* .yvm-content iframe:hover {
      transform: scale(1.02);
      box-shadow:
          0 12px 35px rgba(0, 0, 0, 0.2),
          0 5px 15px rgba(0, 0, 0, 0.15);
  } */

  /* Empty content placeholder */
  .yvm-content:empty::after {
      content: '🎥 Video content will appear here';
      color: #9ca3af;
      font-style: italic;
      font-size: 1.1rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      border-radius: 12px;

  }

  /* Loading animation */
  .yvm-video {
      animation: slideUp 0.8s ease-out;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      body {
          padding: 10px;
      }

      .yvm-video {
          flex-direction: column;
          margin-bottom: 24px;
          min-height: auto;
      }

      .yvm-title {
          padding: 24px;
          margin-left: 0px;
      }

      .yvm-title::after {
          display: none;
      }

      .yvm-title h3 {
          font-size: 1.3rem;
          margin-bottom: 12px;
      }

      .yvm-title-content p {
          font-size: 1rem;
      }

      .yvm-content {
          padding: 20px;
      }

      .yvm-content::before {
          top: 20px;
          left: 20px;
          right: 20px;
          bottom: 20px;
      }

      .yvm-content iframe {
          aspect-ratio: 16 / 9;
          width: 100%;
      }
        .yvm-button-content {
        width: 100% !important;
        min-width: unset;
        max-width: 100%;
        margin: 16px 0 0 0 !important;
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .yvm-button-content p {
        font-size: 1rem;
        color: #60a3e2;
        margin: 0;
        width: 100%;
        text-align: center;
    }
  }

  @media (max-width: 480px) {
      .yvm-video {
          border-radius: 16px;
          margin-bottom: 20px;
      }

      .yvm-title {
          padding: 20px;
          margin-left: 0px;
      }

      .yvm-title h3 {
          font-size: 1.2rem;
      }

      .yvm-title-content p {
          font-size: 0.95rem;
      }

      .yvm-content {
          padding: 16px;
      }

      .yvm-content::before {
          top: 16px;
          left: 16px;
          right: 16px;
          bottom: 16px;
      }
        .yvm-button-content {
        width: 100% !important;
        min-width: unset;
        max-width: 100%;
        margin: 16px 0 0 0 !important;
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .yvm-button-content p {
        font-size: 1rem;
        color: #60a3e2;
        margin: 0;
        width: 100%;
        text-align: center;
    }
  }

  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
      body {
          background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
          color: #e2e8f0;
      }

      .yvm-video {
          background: #1e293b;
          box-shadow:
              0 10px 30px rgba(0, 0, 0, 0.3),
              0 1px 8px rgba(0, 0, 0, 0.2);
      }

      .yvm-content {
          background: #0f172a;
      }

      .yvm-content:empty::after {
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          border-color: #475569;
          color: #94a3b8;
      }
  }

  /* Accessibility improvements */
  .yvm-video:focus-within {
      outline: 3px solid #667eea;
      outline-offset: 2px;
  }

  .yvm-title h3:focus,
  .yvm-content iframe:focus {
      outline: 2px solid rgba(255, 255, 255, 0.8);
      outline-offset: 2px;
  }

  /* Print styles */
  @media print {
      .yvm-video {
          box-shadow: none;
          border: 1px solid #ccc;
          break-inside: avoid;
      }
  }

  .yvm-fb-video .fb-video>span {
      display: block !important;
      width: 100% !important;
      height: auto !important;
  }

  .yvm-fb-video iframe {
      width: 100% !important;
      height: auto !important;
  }

  /* .yvm-fb-page .fb-page>span {
      display: block !important;
      width: 500px !important;
      height: 100px !important;
      overflow: visible !important;
  }

  .yvm-fb-page .fb-page iframe {
      width: 100% !important;
      min-height: 400px !important;
     
      display: block;
  }
  .yvm-fb-post .fb-post > span {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.yvm-fb-post .fb-post iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 400px; 
    display: block !important;
} */