.articles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.article-info {
    flex: 1;
}

.article-info h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.article-info h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.article-info h2 a:hover {
    color: var(--primary-color);
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.read-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}

.read-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}
