.blog-section {
  margin-top: 50px;
  color: #343A40;
}

.blog-section h1 {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}

.blog-section h1 span {
  font-weight: 700;
}

.blog-section h2 {
  font-size: 24px;
  font-weight: bold;
}

.post-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e6e6;
  margin-bottom: 50px;
}

.post-container .header {
  display: flex;
  width: 100%;
  height: 250px;
}

.post-container .header img {
  width:100%;
  height: 100%;
  object-fit: cover;
}

.post-container .content h3 {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
}

.post-container .content a {
  color: #343A40;
}

/* 
Blog Detail (detailed posts) */
.blog-detail {
  margin-top: 50px;
}

.blog-detail .title {
  padding: 10px 0;
  font-size: 32px;
  font-weight: 600;
}

.blog-detail .body img {
  max-width:100% !important;
  height: auto !important;
}

@media (max-width: 767.98px) {
    .blog-detail .body img {
        width:100% !important;
        height: auto !important;
    }
}

.blog-tanggal {
  font-style: italic;
  margin: 0 0 8px 0;
}

.blog-body {
  margin: 8px 0 0 0;
}

.blog-author {
  font-size: 80%;
  font-weight: 400;
  margin: 16px 0 0 0;
}