<style>
  * {
    font-family: sans-serif;
  }

  body {
    margin: 0;
    padding: 40px 20px;
    background: #f9fafb;
    color: #1f2937;
  }

  /* VIDEO SECTION */
  .container1 {
    max-width: 800px;
    margin: 0 auto;
  }

  .video-container1 {
    position: relative;
    width: 50%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-left: 20%;
  }

  .video-container1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .text-content1 {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
  }

  /* POST FOOTER SECTION */
  .post-footer1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .tags1 {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .tag1 {
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
  }

  .share1 {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4b5563;
    font-weight: bold;
    font-size: 16px;
  }

  .share1 i {
    font-size: 18px;
    color: #4b5563;
    cursor: pointer;
  }

  .share1 i:hover {
    color: #1d4ed8;
  }

  /* HEADER IMAGE + MAIN CONTENT */
  .header-image1 {
    width: 100%;
    height: auto;
    display: block;
  }

  .content-container1 {
    background: white;
    margin: -80px auto 0;
    max-width: 900px;
    padding: 60px 40px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
  }

  h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
  }

  .meta1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .author1 {
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .author1 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .meta1 i {
    margin-right: 6px;
    color: #6b7280;
  }

  .text1 {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    text-align: center;
  }

  /* ✅ MEDIA QUERY FOR SMALLER SCREENS */
  @media (max-width: 768px) {
    .video-container1 {
      width: 100%;
      margin-left: 0;
    }

    .content-container1 {
      padding: 30px 20px;
    }

    .post-footer1 {
      flex-direction: column;
      align-items: flex-start;
    }

    .share1 {
      justify-content: flex-start;
    }

    h1 {
      font-size: 24px;
    }

    .text1 {
      font-size: 16px;
    }
  }
</style>
