/* --- BLOG HUB LAYOUT --- */
.leadiary-blog-hub {
    padding: 8px 24px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.blog-hub-header {
    text-align: center;
    padding: 60px 0 40px; /* Gives it more breathing room */
}

.blog-hub-header h1 {
    /* Use the specific font from your head tags */
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 56px; /* Larger, more impactful size */
    font-weight: 800; /* Extra Bold */
    color: #111827; /* Deep midnight blue/black */
    letter-spacing: -0.04em; /* This "tightens" the letters like your image */
    line-height: 1.1;
    margin-bottom: 24px;
}

.blog-hub-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4b5563; /* Softer gray for the subtext */
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* --- THE GRID --- */
.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

/* --- THE CARD STRUCTURE --- */
.post-card {
    background: #ffffff;
    border-radius: 20px; /* Softer corners like your screenshot */
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #FF6B00;
}

/* --- THE IMAGE CONTAINER --- */
.post-card-image {
    width: 100%;
    height: 260px; /* Slightly taller for that premium look */
    overflow: hidden;
    background: #111827;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.08); /* Subtle zoom on hover */
}

/* --- CARD CONTENT --- */
.post-card-content {
    padding: 32px; /* More breathing room */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-category {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 16px;
    display: block;
    letter-spacing: 0.05em;
}

.post-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Read More Link */
.read-more {
    margin-top: auto;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.post-card:hover .read-more i {
    transform: translateX(5px);
    color: #FF6B00;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }
    .leadiary-blog-hub {
        padding: 40px 20px;
    }
}