/************************* MAIN *********************************/

/* Post Container */
.postContainer {
  display: block;
  /* Main Image */
  /* text-align: center; */
}

.postContainer img {
  width: 72%;
  height: auto;
}

.postContainer figure {
  text-align: center;
}

/* Title Container */

.titleContainer {
  /* padding-bottom: 20px; */
}

.titleContainer img {
  width: 90%;
  height: auto;
}

#dataContainer {
  padding: 0;
  margin: 0;
  color: darkgrey;
  font-size: 0.8rem;
  text-align: left;
}

a.readMore {
  text-decoration: none;
  font-style: italic;
  color: inherit;
}

/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  header {
    display: block;
  }
  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .nav-bottom a {
    font-size: 0.96rem;
  }

  .rights img {
    width: 200px;
    height: auto;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  header {
    display: block;
  }

  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
    text-align: left;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 250px;
    height: auto;
  }
}
