.partners-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    align-items: center;
    justify-items: center;
    padding: 15px 0;
}

.partners-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    padding: 6px;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease;
}

.partners-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.partners-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partners-show-more-wrap {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-show-more {
    display: inline-block;
    font-size: 14px;
    color: var(--red);
    background: transparent;
    border: 1px solid var(--red);
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-show-more:hover {
    background: var(--red);
    color: #ffffff;
}

.btn-show-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-hide-items {
    color: #8b959b;
    border-color: #C4C4C4;
}

.btn-hide-items:hover {
    background: #8b959b;
    border-color: #8b959b;
    color: #ffffff;
}
