﻿.partners-categories {
    background-color: #f8f9fa;
}

.partner-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
}

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .partner-card img {
        max-height: 120px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .partner-card img:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
        }



/* Ümumi headerdən sonra birbaşa başlayır */
.mini-header {
    width: 100%;
    height: 90px; /* Hündürlük az */
    display: flex;
    align-items: center;
    padding-left: 30px;
    background: #f8f9fc; /* Real, yumşaq, admin panel effekti */
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    top: 0;
}

/* Təmiz tipografiya */
.mini-header-content h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #1f1f1f;
    letter-spacing: 0.3px;
}

    /* Kiçik vurğu xətti */
    .mini-header-content h1::after {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        background: #0074ff;
        margin-top: 6px;
        border-radius: 4px;
    }
