.blogbtn {
  color: rgb(15, 47, 86);
  padding: 10px 20px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 14px !important;
  font-weight: bold !important;
}
.blogbtn:hover {
  color: rgb(249, 45, 115);
}
.blogBoxItemArea {
  width: 540px;
  margin-bottom: 44px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: solid 1px #e0e2e9;
  background: #fff;
}
.blogBoxItemArea:hover {
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
}
.blogBoxItemArea:hover .images {
  height: 173px;
}
.blogBoxItemArea:hover a {
  display: inline-block !important;
  margin-top: 17px;
}
.blogBoxItemArea .images {
  width: 100%;
  height: 230px;
  background-size: cover !important;
  background-position: center !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
}
.blogBoxItemArea .blogBoxItemAreaText {
  border-bottom-right-radius: 12px;
  background-color: #ffffff;
  border-bottom-left-radius: 12px;
  padding: 24px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 300px;
}
.blogBoxItemArea .blogBoxItemAreaText h2 {
  font-size: 24px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #213153;
  margin-bottom: 9px;
}
.blogBoxItemArea .blogBoxItemAreaText p {
  opacity: 0.8;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: -0.2px;
  color: #191d3a;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogBoxItemArea .blogBoxItemAreaText a {
  display: inline-block !important;
  align-self: flex-end;
  margin-top: 0 !important;
}
@media all and (max-width: 1200px) {
  .blogBoxItemArea {
    width: 460px;
  }
}

.blogPageContainer {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.blogPagesWrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.blogPagination {
    margin-top: 32px;
    text-align: center;
    align-self: center;
}
.page-btn {
    background: #fff;
    color: rgb(15, 47, 86);
    border: 1px solid #eee;
    margin: 0 4px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.2s, font-weight 0.2s;
}
.page-btn.active {
    color: rgb(249, 45, 115);
    font-weight: bold;
}
.page-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}