main h2 {
	margin-top:1em !important;
  }

  .course-intro-container{
    display: block;
    background-color:#EEE9DB;
}

.course-intro {
    margin-top:0;
    width: min(100% - 3rem, var(--container-max, 60ch));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;

    padding-top: 2em;
    text-align: center;
    color: #000;
}

.course-intro-left-column {
    text-align: left;
    padding-top: 3em;
}

.course-title {
    display: block;
    width: 100%;
    font-size: 2em;
    margin-top: 0.2em !important;
}

.course-over-title{
    display: block;
    width: 100%;
    font-size: 1.2em;
    color: #000;
    
}


/* - MOBILE -*/
@media only screen and (max-width: 600px) {
  .course-intro {
    margin-top:0;
    display: block;
    text-align: center;
    color: #000;
  }

  .course-intro-left-column {
    text-align: center;
    padding-bottom: 2em;
    padding-top: 0em;
}
}



/*- lighbox -*/
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
  }
  
  .lightbox__content {
    display: block;
    width: 95%;
    height: 95%;
    margin: auto;
    margin-top:3em;
  }
  
  .lightbox__header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    text-align: right;
  }
  
  .lightbox__title{
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
  }
  
  .lightbox__close {
    color: #000;
    font-size: 2em;
    border: 1px solid #333;
    border-radius: 3em;
    cursor: pointer;
    width: 1.2em;
  }