.blog-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    row-gap: 60px;
    padding: 60px 0;
}
article.blog-card {
    width: calc(33% - 20px);
    display: flex;
    flex-direction: column;
}
.wp-post-image {
    border-radius: 11px;
    margin: 0 0 20px;
    height: 290px;
    object-fit: cover;
    object-position: center;
}
.blog-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.date {
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.blog-card__meta {
    margin-bottom: 20px;
}
h3.blog-card__title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 144%;
    letter-spacing: -0.02em;
    color: #212121;
    text-decoration: none;
}
.blog-card__excerpt {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 159%;
    letter-spacing: -0.02em;
    color: #212121;
    flex-grow: 1;
}
h3.blog-card__title {
    margin: 0 0 10px;
}
a.blog-card__btn {
    justify-self: flex-end;
}
a.blog-card__btn {
    justify-self: flex-end;
    background: #F9B000;
    border-radius: 500px;
    width: 192px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    letter-spacing: -0.02em;
    transition: 0.5s ease all;
    margin: 30px 0 0;
}
a.blog-card__btn:hover {
    box-shadow: 0px 4px 36px rgba(249, 176, 0, 0.32);
    background: #FFCC50;
    transition: 0.5s ease all;
}
.pagination {
    max-width: 1240px;
    display: flex;
    justify-content: center;
    gap: 7px;
    align-items: center;
    margin: 40px auto;
}
.page-numbers {
    width: 50px;
    height: 50px;
    background: #EEEEEE;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 151%;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #212121;
    text-shadow: 0px 4px 44px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.page-numbers:visited {
    color: #212121;
}
.page-numbers.current {
    background: #F9B000;
    transition: all 0.5s ease;
}
.page-numbers:not(.dots):hover {
    background: #F9B000;
    transition: all 0.5s ease;
}
@media screen and (max-width:475px) {
.blog-grid, .pagintaion {
    padding: 40px 20px;
}
    article.blog-card {
    width: 100%;
}
.wp-post-image {
    height: 260px;
}
h3.blog-card__title a {
    font-size: 20px;
}
.blog-grid {
    gap: 40px;
}
.page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
}
}