/* FFWD Subcategory Grid */
.ffwd-subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    padding: 0;
}

.ffwd-subcat-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: inherit;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.ffwd-subcat-card:hover {
    border-color: #198FCE;
    background: #f0f7fc;
    box-shadow: 0 2px 8px rgba(25, 143, 206, 0.12);
    text-decoration: none;
    color: #1a1a1a;
}

.ffwd-subcat-emoji {
    font-size: 1.3em;
    line-height: 1;
    flex-shrink: 0;
}

.ffwd-subcat-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

/* Tablet */
@media (max-width: 768px) {
    .ffwd-subcat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ffwd-subcat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ffwd-subcat-card {
        justify-content: center;
        text-align: center;
    }

    .ffwd-subcat-name {
        font-size: 15px;
    }
}
