@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
.main-nav {
  position: relative;
}

/* General Styling */
.news-post .back-button {
  display: inline-block;
  color: #F5AE2B;
  text-decoration: none;
  margin: 1em;
  font-family: "Baloo Bhai 2", cursive;
  text-transform: uppercase;
}
.news-post .back-button i {
  margin-right: 1em;
}
.news-post .post-header {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  overflow: hidden;
}
.news-post .post-header h1 {
  font-size: 1.5em;
}
.news-post .post-header__info {
  box-sizing: border-box;
  height: 100%;
  font-weight: 300;
  line-height: 150%;
  padding: 1rem;
}
.news-post .post-header__title {
  margin: 0;
  font-size: 1.5em;
}
.news-post .post-header__date {
  margin-top: 0.5em;
  font-size: 0.9em;
}
.news-post .post-header__image {
  background: white;
}
.news-post .post-header__image img {
  display: block;
  border-radius: 1em;
  width: calc(100% - 2rem);
  max-height: 40vh;
  margin: 0 auto;
  object-fit: cover;
}
.news-post .post-content {
  background: white;
  border-radius: 0 0 1em 1em;
  padding: 1rem 1rem 3rem;
  margin-top: 0;
}

/* Mobile styling */
@media screen and (min-width: 480px) {
  .news-post .post-header {
    border-radius: 15px 15px 0 0;
    height: 250px;
    flex-direction: row;
    font-size: 1.25rem;
  }
  .news-post .post-header__info {
    flex: 6;
    padding-top: 1em;
    padding-left: 1em;
  }
  .news-post .post-header__title {
    font-size: 2em;
  }
}
/* Tablet styling */
@media screen and (min-width: 768px) {
  .page-container {
    padding-top: 0;
  }

  .news-post {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
  }
  .news-post .post-header {
    height: 250px;
    background-color: white;
  }
  .news-post .post-header__info {
    padding: 1.5em 0 1.5em 1.5em;
  }
  .news-post .post-header__image {
    height: 100%;
    width: 38%;
  }
  .news-post .post-header__image img {
    border-radius: 0;
    clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0% 100%);
    background: white;
    height: 100%;
    width: 100%;
  }
  .news-post .post-content {
    padding: 1.5em;
  }
}
/* Desktop styling */
@media screen and (min-width: 992px) {
  .news-post .post-header__title {
    font-size: 2.5em;
  }
}

/*# sourceMappingURL=blog-post.css.map */
