.blog__section .blog__section__title {
    text-transform: uppercase;
    font-size: 1.563rem;
    line-height: 1.188rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    margin-top: 0;
}
.blog__items .blog__item {
    display: flex;
    flex-direction: column;
    color: #000;
    text-decoration: none;
}
.blog__item .item__footer {
    padding: .5rem 0;
    display: flex;
    flex-direction: column;
}
.item__image, .item__image img {
    display: flex;
    width: 100%;
}
.blog__item .item__post-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
}
.blog__item .item__post-details {
    font-size: 0.875rem;
    line-height: 110%;
}
.blog__item .item__post-details span {
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    color: inherit;
}
.item__footer .footer__title {
    font-size: 1.1rem;
    margin-top:1rem;
    margin-bottom: .3rem;
    font-weight: 600;
    max-height: 47px;
    height: 47px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 24px;
}
.item__footer .footer__date {
    color: #9B9B9B;
    font-size: 0.5rem;
    display: flex;
    margin-bottom: .7rem;
}
.item__footer .footer__sneak__peak {
    font-size: 0.938rem;
    margin: 0.5rem 0 1.2rem 0;
    font-weight: 300;
    height: 34px;
    max-height: 34px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.item__footer .footer__read__more {
    font-size: 0.813rem;
    margin-top: auto;
    transition: .6s;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    padding-bottom: .2rem;
    display: inline-flex;
    align-self: flex-start;
}
.item__footer .footer__read__more:hover {
    color: var(--orange);
    border-bottom: 1px solid var(--orange);
    transition: .6s;
}
@media only screen and (max-width: 1023px) {
    .blog__items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 620px) {
    .item__image, .item__image img {
        height: 160px;
    }
    .item__footer .footer__title {
        line-height: 21px;
        height: 44px;
        max-height: 44px;
    }
}
@media only screen and (max-width: 435px) {
    .blog__items {
        grid-template-columns: repeat(1, 1fr);
    }
}