/* ===================================
   READ MORE ON / BLOG GRID
   =================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 34px 32px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-kicker {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: 0.01em;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--gold-bright);
}

.blog-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-more {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
