.lzb-blog section {
    padding: 90px 0;
}

.lzb-blog .sec-head {
    margin-bottom: 50px;
    max-width: 740px;
}

.lzb-blog .sec-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fairway, #1f7a4d);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzb-blog .sec-tag:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brass, #c9a24b);
}

.lzb-blog h2.big {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--ink, #0a1410);
    margin-bottom: 0;
    line-height: 1.04;
    letter-spacing: -.02em;
}

.lzb-blog .sec-head p {
    margin-top: 16px;
    font-size: 16px;
    color: #46584d;
    margin-bottom: 0;
}

.lzb-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lzb-blog .post {
    background: #fff;
    border: 1px solid var(--line-dark, rgba(10,20,16,.12));
    border-radius: var(--r, 18px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 24px 60px -28px rgba(0,0,0,.55));
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.lzb-blog .post:hover {
    transform: translateY(-6px);
}

.lzb-blog .post .ph {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--night, #0a1f17);
    position: relative;
}

.lzb-blog .post .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.lzb-blog .post:hover .ph img {
    transform: scale(1.06);
}

.lzb-blog .post .cat {
    position: absolute;
    top: 13px;
    left: 13px;
    background: rgba(10, 31, 23, .82);
    color: var(--brass, #c9a24b);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.lzb-blog .post .body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lzb-blog .post .meta {
    font-size: 11.5px;
    color: var(--muted, #6f8478);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.lzb-blog .post h3 {
    font-size: 19px;
    line-height: 1.18;
    margin-bottom: 9px;
    margin-top: 0;
    color: var(--ink, #0a1410);
}

.lzb-blog .post p {
    font-size: 13.5px;
    color: #56685c;
    flex: 1;
    margin-bottom: 0;
    line-height: 1.55;
}

.lzb-blog .post .read {
    margin-top: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--brass-lo, #a8842f);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s;
}

.lzb-blog .post:hover .read {
    gap: 12px;
}

.lzb-blog .post.soon {
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
    border-color: rgba(10, 20, 16, .2);
    box-shadow: none;
    background: rgba(255, 255, 255, .5);
    min-height: 240px;
    padding: 30px;
}

.lzb-blog .post.soon .ic {
    font-size: 34px;
    margin-bottom: 12px;
    opacity: .5;
}

.lzb-blog .post.soon h3 {
    color: #7a8c80;
}

.lzb-blog .post.soon p {
    flex: none;
    color: #8a9c90;
}

.lzb-blog .blog-cta {
    text-align: center;
    margin-top: 40px;
}

.lzb-blog .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--line-dark, rgba(10,20,16,.12));
    border-radius: 8px;
    color: var(--ink, #0a1410);
    text-decoration: none;
    transition: .2s;
    background: transparent;
}

.lzb-blog .btn-ghost:hover {
    background: rgba(10, 20, 16, .03);
}

@media (max-width: 900px) {
    .lzb-blog .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lzb-blog .blog-grid {
        grid-template-columns: 1fr;
    }
    .lzb-blog section {
        padding: 64px 0;
    }
}
