.tfc-cat-redirect {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.tfc-cat-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: #fdf1ee;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.tfc-cat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.tfc-cat-btn__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1e5df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tfc-cat-btn__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tfc-cat-btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tfc-cat-btn__title {
    font-weight: 700;
    font-size: 16px;
    color: #2b2b3a;
}

.tfc-cat-btn__desc {
    font-size: 14px;
    color: #7a7a85;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .tfc-cat-redirect {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tfc-cat-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 260px;
    }
}