/* ===== UTZone Single Post ===== */
.ut-post {
  max-width: 880px;
  margin: 30px auto;
  padding: 0 16px;
}

/* Thumbnail */
.ut-post-thumb {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.08);

  /* Full container */
  display: flex;
  align-items: stretch; /* ensures image fills vertically */
}


.ut-post-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Header */
.ut-post-header h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ut-post-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #94a3b8;
}

/* Content */
.ut-post-content {
  margin-top: 28px;
}

.ut-post-content h2 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 21px;
  color: #ffffff;
}

.ut-post-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #c7d2fe;
  margin-bottom: 16px;
}

/* ===== Video Section ===== */
.ut-post-video {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.video-title {
  font-size: 22px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Responsive video container */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* iframe style */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Small note text */
.video-note {
  margin-top: 10px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .ut-post-thumb img {
    height: 200px;
  }

  .ut-post-header h1 {
    font-size: 24px;
  }
}
