/* ==============================================
   EXPERT BIL SRL — Noutati (Blog) Styles
   ============================================== */

/* Blog cards */
.expbil-blog-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s var(--expbil-ease-fluid);
}
.expbil-blog-card:hover {
    border-color: var(--expbil-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}
.expbil-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.expbil-blog-card:hover img {
    transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .expbil-blog-card img { height: 160px; }
    .expbil-blog-card:hover { transform: translateY(-2px); }
    .expbil-blog-card { border-radius: 0.75rem; }
}
