.components-archive-wrapper {
    padding: 0;
    border: none;
}

.components-search-bar {
    margin-bottom: 30px;
}

.components-search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 14px 20px;
    font-size: 16px;
    border: 2px solid #e2e4e7;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.components-search-bar input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.components-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.component-card {
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.component-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Зона картинки */
.component-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.component-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.component-card-placeholder {
    color: #a7aaad;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.component-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 20px;
    flex-grow: 1;
}

.component-card-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--main-text-color);
    line-height: 1.3;
}

.component-supported-items {
    display: flex;
    gap: 0.5rem;
}

.component-supported-items span {
    border: 1px solid var(--border-color);
    padding: 0.2rem;
}

@media (max-width: 992px) {
    .components-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .components-archive-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}