/* Desktop Partner Logos Fix
   Make desktop view match tablet view for partner logos */

@media (min-width: 992px) {
    /* Apply the same grid layout as tablet view */
    .stats-section .partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 25px;
        justify-items: center;
        align-items: center;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    /* Position the logos in the grid - same as tablet */
    /* First row: 2 logos */
    .stats-section .partner-logos img:nth-child(1) { grid-column: 1; grid-row: 1; }
    .stats-section .partner-logos img:nth-child(2) { grid-column: 2; grid-row: 1; }
    
    /* Second row: 2 logos */
    .stats-section .partner-logos img:nth-child(3) { grid-column: 1; grid-row: 2; }
    .stats-section .partner-logos img:nth-child(4) { grid-column: 2; grid-row: 2; }
    
    /* Third row: 1 logo centered */
    .stats-section .partner-logos img:nth-child(5) {
        grid-column: 1 / span 2;
        grid-row: 3;
        justify-self: center;
    }
    
    /* Make the logos the same size as tablet view */
    .stats-section .partner-logo {
        height: 80px;
        max-width: none;
        width: auto;
    }
}