.articleslist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-left: 5px solid #007BFF;
    background-color: #fafafa;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 899px) {
  .article-item {
    flex-direction: column;
  }
}


.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.article-item a:hover {
    background-color: none;
}


.article-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
    flex-grow: 1;
    margin-right: 15px;
}


.article-title:hover {
    text-decoration: underline;
}


.article-date {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}


.article-badge {
    background-color: #F10000;
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 10px;
    text-transform: uppercase;
}