.dru-cats {
    padding-top: 20px;
    padding-bottom: 20px;
}

.dru-cats__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.dru-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 222px;
    padding: 25px 20px;
    border-radius: 24px;
    background: #090909;
    text-align: center;
    transition: background .2s ease, color .2s ease;
}

.dru-cat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.dru-cat__icon img {
    width: 54px;
    height: 54px;
}

.dru-cat__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #f4f6ef;
    transition: color .2s ease;
}

.dru-cat__subtitle {
    margin-top: 10px;
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #a7aea1;
    transition: color .2s ease;
}

.dru-cat:hover {
    background: #6bb022;
}
.dru-cat:hover .dru-cat__title,
.dru-cat:hover .dru-cat__subtitle {
    color: #090909;
}
.dru-cat:hover .dru-cat__icon img {
    filter: brightness(0) saturate(100%) invert(0);
}

@media (max-width: 1240px) {
    .dru-cats__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .dru-cats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dru-cat { height: 190px; padding: 18px 12px; }
    .dru-cat__title { font-size: 16px; line-height: 20px; }
    .dru-cat__subtitle { font-size: 13px; }
    .dru-cat__icon img { width: 42px; height: 42px; }
}

@media (max-width: 440px) {
    .dru-cats__grid { grid-template-columns: 1fr; }
}
