/* ================ COLOUR SHORTCUT ================= */
/* .wrapper-video {
  background-color: hsl(0, 1%, 35%);
}

.video-title-section {
  background-color: hsl(0, 10%, 29%);
}

.video-link-section {
  background-color: hsl(0, 16%, 18%);
}

.video-vid-section {
  background-color: hsl(0, 5%, 21%);
}

.video-caption-section {
  background-color: hsl(0, 5%, 21%);
}

.video-share-section {
  background-color: hsl(0, 23%, 20%);
}

.video-text-section {
  background-color: hsl(0, 39%, 14%);
} */
/* ================ COLOUR SHORTCUT ================= */

.wrapper-video {
  /* background-color: hsl(0, 1%, 35%); */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1em;
}

.video-title-section {
  /* background-color: hsl(0, 10%, 29%); */
  grid-column: 1/3;
}

.video-link-section {
  /* background-color: hsl(0, 16%, 18%); */
  grid-column: 2/3;
  text-align: right;
}

.video-vid-section {
  /* background-color: hsl(0, 5%, 21%); */
  grid-column: 1/3;
  grid-row: auto;
  height: fit-content;
}

.video-caption-section {
  /* background-color: hsl(0, 5%, 21%); */
  grid-column: 2/3;
  grid-row: auto;
  text-align: right;
  margin: 0 0 0 3rem;
}

.video-share-section {
  /* background-color: hsl(0, 23%, 20%); */
  grid-column: 2/3;
  grid-row: auto;
  height: fit-content;
  width: fit-content;
  justify-self: end;
  /* align-self: top; */
}

.video-text-section {
  /* background-color: hsl(0, 39%, 14%); */
  grid-column: 1/3;
  grid-row: auto;
  height: fit-content;
}

/* ======= MEDIA QUERIES ======= ======= MEDIA QUERIES =======  */
/* For extremely small screen devices (480px and below) PORTRAIT TINY */
@media only screen and (max-width: 480px) {
  .video-title-section {
    grid-column: 1/3;
  }

  .video-link-section {
    grid-column: 1/3;
    text-align: right;
  }

  .video-vid-section {
    grid-column: 1/3;
  }

  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 3rem;
  }

  .video-share-section {
    grid-column: 2/3;
    grid-row: auto;
    height: fit-content;
    width: fit-content;
    justify-self: end;
    align-self: top;
  }

  .video-text-section {
    grid-column: 1/3;
  }
}

/* For extremely small screen devices (481px and above) PORTRAIT PHONE */
@media only screen and (min-width: 481px) {
  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 4rem;
  }
}

/* Small screen devices (600px and above) PORTRAIT TABLET */
@media only screen and (min-width: 600px) {
  .video-title-section {
    grid-column: 1/3;
  }

  .video-link-section {
    grid-column: 2/3;
    text-align: right;
  }

  .video-vid-section {
    grid-column: 1/3;
    grid-row: auto;
    height: fit-content;
  }

  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 2rem;
  }

  .video-share-section {
    grid-column: 2/3;
    grid-row: auto;
    height: fit-content;
    width: fit-content;
    justify-self: end;
    align-self: top;
  }

  .video-text-section {
    grid-column: 1/3;
  }
}

/* Medium screen devices (768px and above) LANDSCAPE TABLET  */
@media only screen and (min-width: 768px) {
  .video-title-section {
    grid-column: 1/3;
  }

  .video-link-section {
    grid-column: 1/3;
    text-align: right;
  }

  .video-vid-section {
    grid-column: 1/3;
    grid-row: auto;
    height: fit-content;
  }

  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 2rem;
  }

  .video-share-section {
    grid-column: 2/3;
    grid-row: auto;
    height: fit-content;
    width: fit-content;
    justify-self: end;
    align-self: top;
  }

  .video-text-section {
    grid-column: 1/3;
  }
}

/* Big screen devices (1024px and above) LANDSCAPE LAPTOP */
@media only screen and (min-width: 1024px) {
  .video-title-section {
    grid-column: 1/3;
  }

  .video-link-section {
    grid-column: 1/3;
    text-align: right;
  }

  .video-vid-section {
    grid-column: 1/3;
    grid-row: auto;
    height: fit-content;
  }

  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 2rem;
  }

  .video-share-section {
    grid-column: 2/3;
    grid-row: auto;
    height: fit-content;
    width: fit-content;
    justify-self: end;
    align-self: top;
  }

  .video-text-section {
    grid-column: 1/3;
  }
}

/* Extra big screen devices (1201px and above) LANDSCAPE TV */
@media only screen and (min-width: 1201px) {
  .video-title-section {
    grid-column: 1/3;
  }

  .video-link-section {
    grid-column: 2/3;
    text-align: right;
  }

  .video-vid-section {
    grid-column: 1/3;
    grid-row: auto;
    height: fit-content;
  }

  .video-caption-section {
    grid-column: 1/3;
    margin: 0 0 0 2rem;
  }

  .video-share-section {
    grid-column: 2/3;
    grid-row: auto;
    height: fit-content;
    width: fit-content;
    justify-self: end;
    align-self: top;
  }

  .video-text-section {
    grid-column: 1/3;
  }
}

/* ======= MEDIA QUERIES ======= ======= MEDIA QUERIES =======  */
