/* Styles spécifiques pour la page articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.article-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
    border-color: #3b82f6;
}
.article-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 12px;
    display: block;
}
.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 15px;
}
.article-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-read {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.btn-read:hover { text-decoration: underline; }
