/*----------- ARTICLE PAGE STYLES ----------------------*/
section.basic-information{
  padding-top: 100px;
  padding-bottom: 0;
}

.image-container img{
  width: 100%;
  height: auto;
}

.body-container p:first-child{
  margin-top: 0;
}

section.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sub-section {
  display: block;
  flex: 1 50%;
  box-sizing: border-box;
  width: 50%;
}

.sub-section:not(:last-child) {
  padding-right: 25px;
}

.sub-section:not(:first-child) {
  padding-left: 25px;
}

@media (max-width: 1024px) {
  .body-container p:first-child{
    margin-top: 1em;
  }
}

@media (max-width: 768px) {
  section.flex-container {
    padding-top: 30px;
  }

  .sub-section {
    flex: 1 100%;
  }

  .sub-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}
