.bdwebs-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.bd-header-area {
    text-align: center;
    margin-bottom: 40px;
}

.bd-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #000000;
}

.bd-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
}

.bd-search-filter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bd-search-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.bd-search-input:focus {
    border-color: #2563eb;
}

.bd-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.bd-filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.bd-filter-btn:hover, .bd-filter-btn.active {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.bd-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.bd-left-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bd-select {
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
}

.bd-toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #0f172a;
    cursor: pointer;
}

.bd-btn-primary {
    padding: 10px 20px;
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bd-btn-primary:hover {
    background: #1d4ed8;
}

/* Grid & Cards */
.bd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bd-card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.bd-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bd-card-image-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
}

.bd-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bd-card:hover .bd-card-image {
    transform: scale(1.05);
}

.bd-card-content {
    padding: 16px;
}

.bd-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.bd-card-tag {
    font-size: 0.8rem;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: #64748b;
    font-weight: 500;
}
