.blog-header {
  height: 400px;
  width: 100%;
  position: relative;
}
.blog-header img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.blog-header h1 {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c3039;
  background: linear-gradient(0deg, #1c3039 0%, rgba(28, 48, 57, 0.798757) 100%);
  color: #fff;
  font-size: 120px;
  font-style: italic;
}
.page-line {
  width: 100%;
  height: 7px;
  background: #ffd42d;
  box-shadow: 0px 0px 15px #000;
}
.blog-content .container {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  align-items: start;
}
.type-post {
  width: 50%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.type-post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.type-post:first-child {
  width: 100%;
}
.type-post:first-child img {
  width: 60%;
  height: 400px;
}
.type-post:first-child .post-content {
  width: 40%;
  padding-left: 20px;
}
.post-title a {
  color: #1c3039;
}
.post-title a:hover {
  color: #ffd42d;
}
.post-content p {
  margin: 0;
  margin-top: 10px;
}
.navigation.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.navigation.pagination a:hover {
  color: #ffd42d;
}
.page-numbers {
  border: 1px solid #7dc4f0;
  padding: 5px 8px;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .blog-header {
    height: 350px;
  }
  .blog-header h1 {
    font-size: 110px;
  }
  .type-post img {
    height: 210px;
  }
  .type-post:first-child img {
    width: 100%;
    height: 320px;
  }
  .type-post:first-child .post-content {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .blog-header {
    height: 220px;
  }
  .blog-header h1 {
    font-size: 40px;
  }
  .type-post {
    width: 100%;
  }
  .type-post:first-child img {
    height: 190px;
  }
}
