﻿
.articles-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none;
    width: 100%;
    max-width: 1200px;
}

    .articles-list li {
        display: flex;
        justify-content: center; 
        align-items: center; 
        background: transparent;
        padding: 0;
    }

        .articles-list li a {
            display: flex;
            align-items: center; 
            justify-content: center;
            text-align: center;
            width: 100%;
            min-height: 110px; 
            padding: 20px;
            box-sizing: border-box;
            background: #ffffff;
            color: #0f172a;
            font-weight: 600;
            text-decoration: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

            transition: all 0.3s ease;
        }

            .articles-list li a:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                color: orange;
                border: 1px solid rgba(255, 165, 0, 0.3);
            }

@media (max-width: 1024px) {
    .articles-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .articles-list {
        grid-template-columns: 1fr;
    }
}
