﻿.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .category-grid {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.category-card {
    display: block;
    text-decoration: none;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    }

    .category-card h2 {
        margin: 0 0 15px 0;
        color: var(--color-main);
        font-size: 20px;
        font-weight: 700;
        display: block;
        width: 100%;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 10px;
        transition: border-color 0.3s ease;
    }

    .category-card:hover h3 {
        border-bottom-color: rgba(73, 88, 105, 1);
    }

    .category-card p {
        margin: 0;
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
}
