/* Partners Section */
.filter-buttons .btn {
    margin-bottom: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.filter-buttons .btn.active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.partner-card {
    display: block;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo-container {
    height: 120px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.partner-logo {
    max-width: 160px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0;
}

.partner-categories {
    margin-top: 1rem;
}

.partner-category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #e9ecef;
    color: var(--color-body);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

