
/* Used for video watch pages located in /videos/... */

/* RESET */
body, h1, p {
  margin: 0;
  padding: 0;
}

/* BASE */   
body {
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #fff;
}

/* LAYOUT */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 15px;
}

/* TITLE */
h1 {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* WATCH INTRO */
.watch-intro {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

/* VIDEO (ABOVE THE FOLD) */  
.video-wrapper {
  position: relative;
  width: 100%;
  height: 56vh;
  max-height: 520px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

/* CONTENT */
.content {
  margin-top: 20px;
  line-height: 1.6;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 18px;
  margin-top: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* TAGS */
.tags {
  margin-top: 20px;
}

.tag {
  display: inline-block;
  background: #272727;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 3px;
  font-size: 13px;
}

/* TRANSCRIPT */
.transcript {
  margin-top: 40px;
  background: #181818;
  padding: 15px;
  border-radius: 5px;
}