.blog-main-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
}

.first-article-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.fa-image {
  height: 400px;
  flex: 1 1 66%;
}
.fa-image .carousel-inner .carousel-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  height: 400px;
  width: 100%;
  cursor: pointer;
}

.fa-content {
  flex: 1 0 32%;
  gap: 8px;
}
.fa-content .fa-date {
  font-size: 13px;
  font-weight: 600;
  color: #797979;
  margin-bottom: 4px;
  margin-top: 12px;
}
.fa-content .fa-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  color: #1e2b46;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
}
.fa-content .fa-excerpt {
  margin-bottom: 6px;
}
.fa-content .fa-cta {
  color: #F0A541;
  font-weight: bold;
  text-decoration: none;
  transition: color 250ms;
  display: block;
}
.fa-content .fa-cta:hover {
  color: #cc8629;
}

@media (max-width: 991px) {
  .first-article-container {
    flex-direction: column;
    gap: 16px;
  }
  .first-article-container .fa-image {
    width: 100%;
    flex-basis: 100%;
  }
  .first-article-container .fa-content {
    flex-basis: 100%;
  }
}
.mid-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 26px;
}

.mid-subtitle {
  color: #797979;
}

.bd-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  color: #1e2b46;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}

.bd-date {
  font-size: 13px;
  font-weight: 600;
  color: #797979;
  margin-bottom: 12px;
}

.bd-content {
  margin-top: 20px;
}

.bd-separator {
  border-bottom: 3px dotted #F0A541;
  margin: 30px 0;
}

.bd-auth {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.bd-auth .auth-img {
  width: 200px;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  flex: 1 1 200px;
}
.bd-auth .auth-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.bd-auth .auth {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 1 100%;
}
.bd-auth .auth .auth-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  color: #1e2b46;
}
.bd-auth .auth .auth-desc {
  color: #797979;
  font-size: 15px;
  line-height: 20px;
}