.categories-list {
    background-color: #121212;
    padding: 60px 20px;
    color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.category-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.category-item:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.category-card {
    display: block;
    text-decoration: none;
}

.category-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #ff5722;
}

.category-card__content {
    padding: 20px;
}

.category-card__title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.category-card__description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .category-card__title {
        font-size: 18px;
    }

    .category-card__description {
        font-size: 12px;
    }
}
