
  /* --- OVERLAP CONTAINER --- */
  .live-container-flex {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    margin-top: -80px; /* Overlap effect */
    position: relative;
    z-index: 5;
  }

  /* --- VIDEO AREA --- */
  .video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
  }

  .live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.99rem;
    margin-bottom: 15px;
    letter-spacing: .1rem;
  }

  .live-dot {
    height: 10px;
    width: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
  }

  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
  }

  /* --- SIDEBAR RECENT SERMONS --- */
  .sidebar-sermon-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none !important;
    transition: 0.3s;
  }

  .sidebar-sermon-card:hover { opacity: 0.8; }

  .sidebar-sermon-img {
    width: 100px;
    /* height: 70px; */
    border-radius: 8px;
    object-fit: cover;
  }

  .sidebar-sermon-info h4 {
    /* font-size: 0.95rem; */
    font-weight: 700;
    color: #333;
    /* margin-bottom: 5px; */
    line-height: 1.3;
  }

  .btn-orange {
    background: #ff5e14;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 12px;
  font-size: 1.6rem;

  }
   .btn-orange:hover {
    background: #b53d06;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 12px;
  }

  .sidebar-meta {
    /* font-size: 0.75rem; */
    color: #888;
  }

  @media (max-width: 991px) {
    .live-container-flex { padding: 20px; margin-top: -40px; }
    iframe { height: 300px !important; }
  }