.single-ky-nang {
  padding: 60px 0;

  .single-layout {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    margin-top: 30px;
  }

  /* Content */
  .single-content .title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .featured-image img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .single-content .content {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
  }

  /* Sidebar */
  .single-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
  }

  .sidebar-box {
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
  }

  .sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  /* Related */
  .related-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #111;
  }

  .related-item:last-child {
    margin-bottom: 0;
  }

  .related-item .thumb img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    min-width: 54px;
  }

  .related-item h4 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 14px;
    color: #666;
  }

  .breadcrumb a {
    color: #2563eb;
    text-decoration: none;
  }
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    background: #000;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-preview-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 32px;
    background: #000;
  }

  .video-preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Play button */
  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    border: none;
    transition: 0.3s;
    margin: 0;
    padding: 0;
    padding-left: 7px;
  }

  /* .video-preview-wrapper:hover .video-play-btn {
    background: #2563eb;
    transform: scale(1.08);
  } */
}

@media (max-width: 768px) {
  .single-ky-nang .single-layout {
    grid-template-columns: 1fr;
  }
}


.global-audio-player {
    display: inline-flex;
}

.audio-btn {
    /* padding: 10px;*/
    padding-left: 12px;
    margin: 0px;
    min-height: unset;
    height: 24px;
    width: 24px;
    font-size: 10px;
    line-height: normal;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn.playing {
    background: #dc2626;
}
