.blog-main {
  max-width: 1920px;
  margin: 0 auto;
}

.blog-wrapper {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0px;
}

.blog-wrapper.bg-gray {
  background: #f8f8f8;
}

.blog-main-container {
  max-width: 1380px;
  width: 100%;
}

.load-more-container {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.load-more-button {
  padding: 20px 40px;
  font-family: "Arial", sans-serif;
  border-radius: 50px;
  border: 2px solid #f09f00;
  color: #f09f00;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.load-more-button:hover {
  opacity: 0.6;
}

.featured-post-header {
  font-family: "Arial", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: normal;
  color: #154258;
  margin: 0px;
}

.blog-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.featured-post-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.featured-post-inner {
  display: flex;
  border: 3px solid #f09f00;
  border-radius: 20px;
}
.featured-post-image {
  flex: 1;
  max-width: 40%;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

.featured-post-content {
  flex: 1;
  max-width: 60%;
  width: 100%;
  padding: 50px 60px 30px 60px;
}

.featured-post-date {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #f09f00;
}

.featured-post-views {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #323232;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-post-title {
  font-family: "Arial", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  color: #323232;
}

.featured-post-excerpt {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #323232;
}

.featured-post-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.featured-post-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  align-items: center;
}

.blog-card-button {
  font-family: "Arial", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #f09f00;
  border: 2px solid #f09f00;
  border-radius: 50px;
  padding: 16px 32px;
  text-decoration: none;
}

.featured-post-tags,
.blog-tags {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.featured-post-tag,
.blog-tag {
  text-transform: uppercase;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #323232;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 10px 15px;
  width: fit-content;
}

.blog-tag {
  cursor: pointer;
}

.blog-tag.active,
.blog-tag:hover {
  color: #f09f00;
  border: 2px solid #f09f00;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.blog-card {
  border: 3px solid #e1e1e1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.blog-card-image img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px 30px 40px;
}

.blog-card-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card-title {
  color: #323232;
  font-size: 16px;
  line-height: 150%;
  font-weight: 900;
  font-family: "Arial", sans-serif;
}

@media (max-width: 1440px) {
  .blog-wrapper {
    padding: 80px 60px;
  }
}

@media (max-width: 1024px) {
  .featured-post-header {
    font-size: 64px;
  }
  .featured-post-inner {
    flex-direction: column;
  }
  .featured-post-image {
    max-width: 100%;
    height: 400px;
    flex: auto;
    position: relative;
  }
  .featured-post-image img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .featured-post-content {
    max-width: 100%;
    padding: 50px 60px;
    flex: auto;
  }
  .featured-post-footer {
    margin-top: 40px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-wrapper {
    padding: 40px 20px;
  }
  .featured-post-container {
    gap: 40px;
  }
  .featured-post-header {
    font-size: 32px;
  }
  .featured-post-content {
    padding: 50px;
  }
  .featured-post-date,
  .featured-post-views,
  .featured-post-tag,
  .blog-tag,
  .featured-post-title,
  .featured-post-excerpt,
  .blog-card-button,
  .blog-card-title,
  .load-more-button {
    font-size: 26px;
  }
  .featured-post-views img {
    width: 26px;
    height: 26px;
  }
  .featured-post-footer {
    gap: 66px;
  }
  .blog-body {
    gap: 30px;
  }
  .blog-card-content {
    padding: 50px;
  }
  .load-more-container {
    margin-top: 40px;
  }
}

@media (max-width: 520px) {
  .featured-post-image {
    height: 200px;
  }
  .featured-post-content {
    padding: 20px;
  }
  .featured-post-date,
  .featured-post-views,
  .featured-post-tag,
  .blog-tag,
  .featured-post-title,
  .featured-post-excerpt,
  .blog-card-button,
  .blog-card-title,
  .load-more-button {
    font-size: 16px;
  }
  .featured-post-views img {
    width: 16px;
    height: 16px;
  }
  .featured-post-footer {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  .blog-card-button {
    width: 100%;
  }
  .blog-card-image {
    height: 200px;
  }
  .blog-card-content {
    padding: 20px;
  }
}
