.home-blog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.389rem; /* 20px */
}

.home-blog__card {
    background: #fafafa;
    border-radius: var(--home-radius);
    padding: 1.111rem;
    display: flex;
    flex-direction: column;
    gap: 1.389rem;
}

.home-blog__thumb {
    display: block;
    border-radius: 0.833rem;
    overflow: hidden;
    background: #d9d9d9;
    aspect-ratio: 273 / 160;
}

.home-blog__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog__title {
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.111rem; /* 16px */
    font-weight: 700;
    line-height: 1.6;
    color: rgba(42, 42, 42, 0.89);
    margin-top: -0.75rem;
}

.home-blog__title a {
    color: inherit;
    display: block;
}

.home-blog__excerpt {
    font-size: 0.972rem; /* 14px */
    line-height: 1.7;
    color: rgba(38, 38, 38, 0.8);
    margin-top: -1rem;
}

.home-blog__more {
    display: inline-flex;
    align-items: center;
    gap: 0.833rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.111rem;
    font-weight: 600;
    color: var(--home-orange);
    text-decoration: underline;
    margin-top: -0.5rem;
}

.home-blog__more img {
    width: 1.944rem;
    height: 1.944rem;
}

@media (max-width: 1024px) {
    .home-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

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