
/* ============================================================
   JACKSON ARMS LLC — PHASE 9.51I.5.1
   COUNTY PAGINATION VISIBILITY REPAIR
   ============================================================ */

/*
 * The live site styles county cards with display rules that can override
 * the HTML hidden attribute. This class forces non-current-page cards off.
 */
.county-directory-item.ja951i51-page-hidden{
    display:none!important;
}

.county-pagination{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    margin-top:26px;
    padding-top:20px;
    border-top:1px solid #2a2f34;
}

.county-pagination.ja951i51-pagination-hidden{
    display:none!important;
}

.county-pagination-summary{
    color:#9aa4af;
    font-size:14px;
    font-weight:700;
}

.county-pagination-controls{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.county-page-btn{
    min-width:42px;
    height:42px;
    padding:0 13px;
    border:1px solid #343a40;
    background:#14181c;
    color:#fff;
    font:inherit;
    font-weight:800;
    cursor:pointer;
    transition:.18s ease;
}

.county-page-btn:hover:not(:disabled),
.county-page-btn:focus-visible{
    border-color:#e51b23;
    color:#e51b23;
    outline:none;
}

.county-page-btn.is-active{
    background:#e51b23;
    border-color:#e51b23;
    color:#fff;
}

.county-page-btn:disabled{
    opacity:.38;
    cursor:not-allowed;
}

@media(max-width:700px){
    .county-pagination{
        justify-content:center;
    }

    .county-pagination-summary{
        width:100%;
        text-align:center;
    }

    .county-pagination-controls{
        justify-content:center;
    }
}
