.toc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 10px;
    justify-content: center;
}

/* Карточка категории */
.toc-card {
    width: 100%;
    max-width: 480px;
    height: 150px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

/* Изображение */
.toc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Затемнение */
.toc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    transition: background 0.3s ease;
}

/* Ховер: усилить затемнение */
.toc-card:hover::before {
    background: rgba(0,0,0,0.65);
}

/* Название категории */
.toc-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 26px;
    font-weight: normal;
    text-align: center;
    padding: 0 10px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Адаптив: по 2 в ряд на >=600px */
@media (min-width: 600px) {
    .toc-card {
        width: calc(50% - 10px);
    }
}

/* Адаптив: по 3 в ряд на >=960px */
@media (min-width: 960px) {
    .toc-card {
        width: calc(33.333% - 12px);
    }
}

    /* Стиль однотонных карточек */
.toc-card.solid-bg {
    background-color: #333; /* fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.toc-card.solid-bg .toc-title {
    z-index: 1;
}

/* 5 разных оттенков */
.toc-bg-1 { background-color: #2c3e50; }
.toc-bg-2 { background-color: #34495e; }
.toc-bg-3 { background-color: #3b3b3b; }
.toc-bg-4 { background-color: #4d4d4d; }
.toc-bg-5 { background-color: #555; }
