/* Container Spacing */
.blog-main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Special Rows (1, 2, 9) */
.special-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  height: 650px;
}

.special-row .special-image img {
  max-height: 650px;
  object-fit: cover;
}
.special-row.row-reverse {
  flex-direction: row-reverse;
  height: 350px;
}

.special-row.row-reverse .special-image img {
  max-height: 350px;
  object-fit: cover;
}
.special-row > div {
  flex: 1;
}
.special-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Middle Grid (3-8) */
.normal-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.normal-post {
  text-align: center;
}
.normal-post img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Button Style */
.btn-black {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 12px;
  margin-top: 15px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}

.blog-grid-load-more.btn-black {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 12px;
  margin-top: 15px;
  border: 1px solid #000;
  border-bottom: 3px solid #000;
  cursor: pointer;
  transition: all ease 0.7s;
}
.blog-grid-load-more.btn-black:hover {
  border-bottom: 1px solid #000;
}
.btn-black:hover {
  opacity: 0.9;
}
.btn-black:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Load more */
.blog-grid-load-more-wrap {
  text-align: center;
  margin: 40px 0 60px;
}
.blog-grid-load-more-wrap .btn-black {
  margin-top: 0;
}

.special-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-content .excerpt {
  text-align: center;
}
.special-content {
  font-family: "Montserrat", Sans-serif;
}
.normal-content {
  font-family: "Montserrat", Sans-serif;
}

.normal-content h2 {
  font-size: 18px;
  font-weight: 500;
}
