/* Overview Styles */
.overviewContainer {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5em;
  
  display: flex;
  flex-direction: row;
  background-color: rgb(0, 117, 178);
  padding: 1em 0.5em 0 .5em;
  
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.overviewDescription {
  color: white;
  text-align: center;
  max-width: 600px;
  margin-bottom: 1rem;
}

.overviewTitleContainer {
  padding: 1em 0;
}

.overviewTitleText {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 700;
}

.ctaButtonContainer {
  padding: 1em 0;
  display: flex;
  justify-content: center;
}

.ctaButtonContainer a {
  color: rgba(4, 61, 92, 0.8);
  font-weight: 600;
  background-color: rgb(255, 227, 0);
  font-size: 34px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  padding: 0.2em 0.5em;
}

.dottedLine {
  border-bottom: 4px dashed rgb(255, 227, 0);
  width: 90%;
  margin: 0 auto;
}

.mainDescriptionContainer {
  padding: 1em 0.2em;
}

.mainDescriptionContainer p {
  margin-top: 1em;
  font-size: 22px;
  line-height: 1.5em;
}

.overviewImage {
  max-width: 100%;
   display: block;
}

/* Mobile Responsive Styles */
@media only screen and (min-width: 320px) {  

  .overviewImageContainer {
    display: none;
  }

  .mainDescriptionContainer p {
    margin-top: 1em;
    font-size: 18px;
    line-height: 1.2em;
  }
}

@media only screen and (min-width: 700px) {

  .overviewImageContainer {
    display: flex;
    align-self: flex-end; /* Overrides parent's align-items: center */
    /* align-items: flex-end; */
    height: 100%; /* Make sure container has height to work with */
  }

  .mainDescriptionContainer p {
    margin-top: 1em;
    font-size: 22px;
    line-height: 1.5em;
  }
}
