.cards-post-box {
    display: flex;
    gap: 16px;
}

.card-post-item-header {
    height: 130px;
    background-size: 100% auto;
    background-position: center;
    transition: 0.2s linear all;
    position: relative;
    display: block;
}

.card-post-item-header:hover {
    background-size: 110% auto;
}

.card-post-item {
    width: 275px;
    display: flex;
    flex-wrap;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: #009CD4;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom:32px;
}

.card-post-item-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    height: 290px;
    justify-content: space-between;
}

.card-post-item-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.card-post-item-content p {
    margin:0;
    font-size: 14px;
    font-weight: 500;
    line-height:1.5em;
}

a.card-post-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition:0.2s linear all;
}

a.card-post-cta:hover {
    background: #fff;
    color: #023b88;
    border: 2px solid #fff;
}

.blog-post-section {
    display: flex;
    gap: 16px;
    width:1100px;
    max-width:100%;
}

.blog-info {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 230px;
    align-content: space-between;
    justify-content: space-between;
    height: 400px;
}

.blog-info p {
    font-size: 14px;
    line-height: 1.5em;
    margin:0;
}

.blog-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0d0d0d3d;
    border: 2px solid #fff;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight:600;
    color: #fff;
    font-size: 13px;
    transition:0.2s linear all;
}

.blog-info a:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #023c89;
}

@media (max-width: 900px) {
  .cards-post-box {
    flex-wrap: wrap;
    justify-content: center;
}
  
.blog-post-section {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  width:100%;
}
  
  .blog-info {
    width: 300px;
    justify-content:center;
    height: 350px;
}
  
  .blog-info p {
    text-align: center;
}
  
}