.home-blog-section {
    margin: 40px 0 0 0;
}
.home-blog-section .section-title {
    /* font-size: 2rem; */
    /* font-weight: 700; */
    /* padding-top: 20px; */
    margin-bottom: 2rem;
}
.home-blog-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.home-blog-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.home-blog-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
}
.home-blog-thumb {
    display: block;
    aspect-ratio: 16/6;
    background: #f3f3f3;
    overflow: hidden;
}
.home-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.home-blog-card:hover .home-blog-thumb img {
    transform: scale(1.05);
}
.no-thumb {
    width: 100%;
    height: 180px;
    background: #ececec;
}
.home-blog-content {
    padding: 20px 20px 24px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.home-blog-date {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
}
.home-blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.home-blog-title a {
    color: #202020;
    text-decoration: none;
}
.home-blog-title a:hover {
    color: var(--primary-accent, #202020);
}
.home-blog-excerpt {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
    flex: 1 1 auto;
}
.home-blog-readmore {
    align-self: flex-start;
    background: var(--primary-accent, #202020);
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.78rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.home-blog-readmore:hover {
    background: #111;
}
@media (max-width: 600px) {
    .home-blog-section {
        margin: 24px 0 0 0;
    }
    .home-blog-masonry {
        gap: 18px;
    }
    .home-blog-content {
        padding: 14px 12px 18px 12px;
    }
}
.masonry-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 900px) {
    .masonry-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .masonry-3-cols {
        grid-template-columns: 1fr;
        gap: 18px;
    }
} 