/* ============================
   PARTNERS GRID
   ============================ */

.partners-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 22pt;
    font-weight: bold;
    margin-bottom: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center;
}

/* Partner item container */
.partner-item {
    height: 150px; /* adjust to taste */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner item image */
.partner-item {
    height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.partner-item img:hover {
    transform: scale(1.05);
}

.partner-logo img {
    filter: grayscale(100%);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-cta-top {
    text-align: center;
    margin: 10px 0 40px;
}

.partners-glass-link {
    display: inline-block;
    padding: 6px 18px; /* smaller button */
    font-size: 16px;   /* smaller text */
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-radius: 10px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);

    transition: all 0.25s ease;
}

.partners-glass-link:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}