/* ===== BLOG ===== */
.blog-hero .phero-bg img {
    height: 100%;
    object-position: center;
}

.blog-hero .phero-inner {
    padding-top: clamp(120px, 14vw, 160px);
}

/* Blog grid */
.grid-3 .card .cb h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
}

.blog-cat {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone-deep);
    font-weight: 700;
}

.blog-title {
    margin-top: 6px;
}

.blog-excerpt {
    display: inline-flex;
    gap: 6px;
    margin-top: 14px;
    color: var(--ink);
    font-weight: 600;
    font-size: .85rem;
}

/* Blog post */
/* .prose {
    max-width: 760px;
} */

.prose p {
    margin-bottom: 18px;
    color: var(--ink-2);
    font-size: 1.04rem;
    line-height: 1.8;
}

.prose h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 34px 0 12px;
}

.prose ul {
    margin: 0 0 18px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-2);
    line-height: 1.6;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--stone-deep);
}

.prose ul li b {
    color: var(--ink);
}

.prose img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    margin: 24px 0;
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
}
