/* stylelint-disable @stylistic/selector-list-comma-newline-after */

.blog-header-logo {
  font-family: "Playfair Display", Georgia, "Times New Roman",
    serif ;
  font-size: 2.25rem;
}

.blog-header-logo:hover {
  text-decoration: none;
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 {
  height: 250px;
}
@media (min-width: 768px) {
  .h-md-250 {
    height: 250px;
  }
}

.img-res {
  position: relative;
  width: 100%;
}

.img-res img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

/*
 * Blog posts
 */
.blog-post {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  background-color: white;
  margin-bottom: 4rem;
  border-radius: 5px;
}
.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #727272;
}

.container {
  display: flex;
}

p {
  font-size: 1.25rem;
}

@media screen and (max-width: 992px) {
  .apply-button {
    min-width: 100px !important;
  }
  #join {
    min-width: 100px !important;
  }
}

@media screen and (max-width: 768px) {
  .col-md-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .apply-button {
    max-width: 120px !important;
  }
}

@media screen and (max-width: 520px) {
  h2 {
    font-size: 1.75rem !important;
  }
  p {
    font-size: 1.125rem !important;
  }
}