/* === LAYOUT GRIGLIA ARTICOLI SCIENTIFICI - LifeSkill === */

.scientific-articles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px;
    margin-bottom: 60px;
}

.scientific-article-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scientific-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-card-title a {
    color: #004876;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.article-card-title a:hover {
    color: #43a185;
}

.article-card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.article-card-category {
    color: #1e97d4;
    font-weight: 500;
    text-decoration: none;
}

.article-card-category:hover {
    text-decoration: underline;
}

.article-card-authors {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.article-card-excerpt {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}

.article-card-stats {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bb-icon-eye::before,
.bb-icon-download::before {
    font-family: 'bb-icons' !important;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    margin-right: 6px;
    font-size: 1rem;
    line-height: 1;
}

.bb-icon-eye::before {
    content: "\f06e";
}

.bb-icon-download::before {
    content: "\f019";
}

.read-more-btn {
    color: #43a185;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}
