/* Blog Section Enhanced Styles */

.blog-section-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.blog-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Image Area */
.blog-thumb-modern {
    position: relative;
    overflow: hidden;
    padding-top: 60%; /* 16:9 Aspect Ratio approx */
}

.blog-thumb-modern img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-thumb-modern img {
    transform: scale(1.1);
}

/* Floating Tag */
.blog-tag-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3b82f6;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* Content Area */
.blog-content-modern {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Data */
.blog-meta-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-meta-modern span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-modern i {
    color: #3b82f6;
}

/* Title */
.blog-title-modern {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title-modern a {
    color: inherit;
    text-decoration: none;
}

.blog-card-modern:hover .blog-title-modern {
    color: #3b82f6;
}

/* Description (Optional if you add it later) */
.blog-text-modern {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Footer / Link */
.blog-footer-modern {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-link-modern {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link-modern:hover {
    color: #3b82f6;
    gap: 12px;
}

.blog-share-btn {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.blog-share-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}
