/* Taxonomy page specific styles */
.taxonomy-search {
    max-width: 600px;
    margin: 2rem 0;
}

/* Ensure workflow cards display properly - fix for flex vs block */
.workflows-grid .workflow-card {
    display: flex;
    flex-direction: column;
}

/* No results message */
.workflows-grid .no-results {
    grid-column: 1 / -1;
    padding: 3rem;
    text-align: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px dashed var(--border-color);
}

.workflows-grid .no-results p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Section styling */
.section-description {
    max-width: 800px;
    margin: 1rem 0 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Make active filter visible */
.filter-item input[type="radio"]:checked+.filter-label {
    color: var(--primary-color);
    font-weight: 600;
}