.routes-archive{
padding: 20px 40px;
width: 100%;
}

.routes-header{
    text-align:center;
    margin-bottom:50px;
}

.routes-header h1{
    font-size:42px;
    margin-bottom:15px;
}

.routes-header p{
    font-size:18px;
    color:#6b7280;
}

.routes-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.route-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.25s;
}

.route-card:hover{
    transform:translateY(-4px);
}

.route-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.route-card h2{
    padding:20px 20px 10px;
    margin:0;
    font-size:24px;
    line-height:1.3;
}

.route-days,
.route-distance{
    padding:0 20px 10px;
    color:#4b5563;
    font-size:15px;
}

.route-card p{
    padding:0 20px 20px;
    color:#374151;
}

.routes-pagination{
    margin-top:60px;
    text-align:center;
}

.routes-pagination .page-numbers{
    display:inline-block;
    padding:10px 16px;
    margin:3px;
    border-radius:10px;
    background:#f3f4f6;
    text-decoration:none;
}

.routes-pagination .current{
    font-weight:700;
}

@media(max-width:1024px){

    .routes-list{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .routes-list{
        grid-template-columns:1fr;
    }

    .routes-header h1{
        font-size:30px;
    }

}