/* Blog / Journal Rich Look Styles */

.blog article, .single-post article {
    margin-bottom: 4rem;
}

.entry-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    color: var(--ajc-charcoal-900) !important;
    margin-bottom: 1.5rem !important;
}

.entry-content {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.8 !important;
    color: var(--ajc-charcoal-700) !important;
}

.entry-meta {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--ajc-gold-500);
    margin-bottom: 1rem;
}

/* Post card look for archive */
.blog .post, .archive .post {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--ajc-gold-100);
    transition: all 0.4s ease;
}

.blog .post:hover, .archive .post:hover {
    box-shadow: 0 10px 30px rgba(212, 162, 78, 0.1);
    transform: translateY(-5px);
}
