.modern-blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.modern-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

/* --- Image & Pill --- */
.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05); /* Slight zoom on card hover */
}

.blog-category-pill {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #111111;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

/* --- Meta Details --- */
.blog-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.blog-meta li {
    font-size: 18px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-02);
}

.blog-meta i {
    color: var(--color-2); /* Colors the calendar and comment icons */
    font-size: 18px;
}

.meta-divider {
    color: #dddddd !important;
}

/* --- Typography --- */
.blog-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-01);
}

.blog-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--color-1);
}

.blog-summary {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--font-02);
}

/* --- Link --- */
.browse-more-link {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    font-family: var(--font-02);
}

.browse-more-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.browse-more-link:hover {
    color: var(--color-2);
}

.browse-more-link:hover i {
    transform: translate(3px, -3px); /* Little diagonal hop animation */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .blog-img-wrapper {
        height: 250px;
    }
    .blog-title {
        font-size: 20px;
    }
}