/* =========================================
   Premium Blog Section Styles
   ========================================= */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange, #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    /* Increased from 0.85rem */
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.blog-title {
    color: white;
    font-size: 1.6rem;
    /* Increased from 1.25rem */
    font-weight: 800;
    /* Bolder */
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-orange, #ff8c00);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    /* increased opacity */
    font-size: 1.05rem;
    /* Increased from 0.95rem */
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more-link {
    gap: 12px;
    color: var(--accent-orange, #ff8c00);
}