.home-blog-section {
    padding: 64px 18px;
    background: #fff;
}

.home-blog-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.home-blog-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.home-blog-heading span {
    color: #df641f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-blog-heading h2 {
    margin: 7px 0 5px;
    color: #3b2716;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0;
}

.home-blog-heading p {
    margin: 0;
    color: #6b625b;
}

.home-blog-archive,
.home-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c94f13;
    font-weight: 700;
    text-decoration: none;
}

.home-blog-archive {
    min-height: 42px;
    flex: 0 0 auto;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-blog-post {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #eadfd6;
    border-radius: 8px;
    background: #fcfaf5;
}

.home-blog-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee9e5;
}

.home-blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.home-blog-post:hover .home-blog-image img {
    transform: scale(1.025);
}

.home-blog-copy {
    padding: 20px;
}

.home-blog-copy time {
    color: #8b5b3d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-blog-copy h3 {
    margin: 8px 0 10px;
    color: #3b2716;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
}

.home-blog-copy h3 a {
    color: inherit;
    text-decoration: none;
}

.home-blog-copy p {
    margin: 0 0 17px;
    color: #625951;
    font-size: 14px;
    line-height: 1.65;
}

.home-blog-read {
    font-size: 14px;
}

.home-blog-archive:hover,
.home-blog-archive:focus,
.home-blog-read:hover,
.home-blog-read:focus,
.home-blog-copy h3 a:hover,
.home-blog-copy h3 a:focus {
    color: #a93d0c;
    text-decoration: underline;
}

@media (max-width: 860px) {
    .home-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .home-blog-section {
        padding-block: 50px;
    }

    .home-blog-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}
