section.ew-hero-sec {
    position: relative;
    overflow: hidden;
    height: 30rem;
    background: #0000005e;
    color: #fff;
}
.ew-hero-sec img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
.ew-cont--flex {
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}
.ew-cont--centered {
    justify-content: center;
}
.blog-post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}
article {
    margin-bottom: 3rem;
}
.ew-blog h3 {
    font-size: 95%;
}
.ew-blog p {
    font-size: 90%;
    line-height: 1.4;
}
.read-more-button {
    padding: 0.5rem 3rem;
}
h2.screen-reader-text {
    display: none;
}
.ew-blog .pagination {
	margin-top: 3rem;
}
@media only screen and (max-width: 991px) {
    .blog-post-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media only screen and (max-width: 480px) {
    .blog-post-list {
        grid-template-columns: minmax(0, 1fr);
    }
}