/* ----------- PROMO ART ----------- */
.promo_art_grid {
    height: 400px;
    width: 100%;
    display: grid;
    grid-template-columns: 35px 33fr 67fr 35px;
    grid-template-rows: 35fr 10fr 55fr 35px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      ". logo splash ."
      ". details splash ."
      ". summary splash ."
      " . . . .";
  }
  
  .promo_details { 
    grid-area: details;
    display: grid;
    grid-template-columns: min-content min-content min-content min-content;
    grid-template-rows: min-content 1fr;
    gap: 0px 8px;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    grid-template-areas:
      "released rating length resolution"
      "genres genres genres genres";
   }
  
  .promo_genres {
    grid-area: 2 / 1 / 2 / 4;
    white-space: nowrap;
  }
  
  .promo_logo { grid-area: logo; }
  
  .promo_summary { 
    grid-area: summary;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr min-content;
    justify-items: center;
   }
  
   .promo_summary_text {
    /* nothing special */
   }

  .promo_splash {
    grid-area: splash;
    padding-left: 12px
  }


  .carousel_image {
    height: 100%;
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
  }

  /* ----------- MOVIE   TILE ----------- */
  #movie_tile_wrapper {
    height: 600px;
    margin-left: 16px;
    margin-right: 16px;
    display: grid;
    grid-template-columns: 33% 1fr 1fr;
    grid-template-rows: 160px min-content 1fr 2.5fr min-content;
    grid-template-areas: 
    "title_logo movie movie"
    "details    movie movie"
    "summary    movie movie"
    "buttons    credits rating"
    "report     .       close";
  }

  .tile_summary_wrapper{    
    grid-area: summary;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr min-content;
    grid-template-rows: 1fr;
  }

  .tile_buttons {
    grid-area: buttons;
    justify-self: center;
    align-self: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .tile_rating {
    grid-area: rating;
    justify-self: end;
    align-self: start;
  }

  /* elements of the movie tile */
  .tile_title_logo {
  grid-area: title_logo;
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
  grid-template-areas: 
    "title share"
    "logo  share";
}

  .tile_title_logo .tile_title {
    grid-area: title;
    justify-self: start;
    align-self: end;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .tile_title_logo .movie_share {
    grid-area: share;
    justify-self: end;
    align-self: center;
    height: 20px;
    width: 20px;
    cursor: pointer;
    margin-left: 8px;
  }

  .tile_title_logo .tile_logo {
    grid-area: logo;
    justify-self: start;
    height: 100%;
    width: 100%;
    max-height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .tile_summary_wrapper {
    grid-area: summary;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tile_summary{
    line-height: 14pt;
    font-size: 13pt;
    color: #ffffff;
    font-family: helvetica, verdana, arial, sans-serif;
    overflow-y: auto;
    padding-top: 12px;
    padding-bottom: 8px;
    font-weight: lighter;
  }
  
  .tile_more {
    display: none;
  }

  .tile_credits{
    grid-area: credits;
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 0px 6px;
    align-self: start;
    justify-self: start;
    text-shadow: 0px 0px 8px #000000;
  }
  .tile_movie {
    grid-area: movie;
    justify-self: end;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    height: 100%;
  }