.header-wrapper {
  position: relative;
  height: 389px;
  overflow: hidden;
}

.header-wrapper .image-overlay {
  padding-top: 110px;
}

main {
  display: flex;
  flex-direction: column;

  background-color: #f2f2f2;
}

.blog-header {
  background-color: white;
}

.blog-header h1 {
  font-family: 'Ginger', serif;
  font-size: 3rem;
  color: #003a66;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.blog-header .arrow-down {
  display: inline-block;
  color: #1E7B3A;
  font-size: 2rem;
}

/* Cards do blog */
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 800px;

  display: flex;
}

.blog-image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
  min-width: 200px;
  max-height: 200px;
}

@media (max-width: 990px) {
  .blog-card {
    flex-direction: column;
    padding-bottom: 21px;
  }

  .blog-image img {
    border-radius: 0px;
  }
}

.blog-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 8px;
  text-transform: capitalize;
}

.blog-content {
  padding: 1rem;
}

.blog-title {
  font-family: 'Ginger', serif;
  color: #003a66;
  font-size: 2rem;
  font-weight: bold;
}

.blog-title a {
  text-decoration: none;
  color: inherit;
}

.blog-excerpt {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
  color: #003a66;
}

.btn-readmore {
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: auto;
  border-radius: 8px;

  background-color: #003a66;
  color: #fff;
  padding: 4px 21px 4px 21px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-readmore:hover {
  background-color: #0d5892;
  color: #fff;
}

.page-link {
  background-color: transparent;
  color: #003a66;
  border: none;
}

.page-link.current,
.page-link:hover {
  background-color: transparent;
  color: #003a66;
  font-weight: bold;
}