/* =========================
   ONLINE EDUVERSITY DIRECTORY
========================= */

.oe-filter-form{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:20px;
    margin-bottom:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.oe-search-row{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.oe-search-row input{
    flex:1;
    height:50px;
    padding:0 18px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    font-size:16px;
}

.oe-search-row button{
    background:#21409A;
    color:#fff;
    border:none;
    padding:0 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.oe-search-row button:hover{
    background:#173173;
}

.oe-filter-row{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.oe-filter-row select{
    height:48px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    padding:0 12px;
    background:#fff;
    font-size:15px;
}

.oe-university-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.oe-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #ececec;
}

.oe-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.oe-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.oe-card h3{
    padding:20px 20px 10px;
    font-size:22px;
    line-height:1.4;
    color:#222;
}

.oe-card p{
    padding:0 20px;
    color:#666;
}

.oe-card a{
    display:inline-block;
    margin:20px;
    background:#21409A;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:6px;
    transition:.3s;
}

.oe-card a:hover{
    background:#173173;
}

@media(max-width:1024px){

.oe-filter-row{
grid-template-columns:repeat(3,1fr);
}

.oe-university-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.oe-search-row{
flex-direction:column;
}

.oe-filter-row{
grid-template-columns:1fr;
}

.oe-university-grid{
grid-template-columns:1fr;
}

}

.oe-search-row{
    display:flex;
    gap:15px;
    align-items:center;
}

.oe-reset-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    height:60px;
    padding:0 40px;
    background:#e5e7eb;
    color:#222;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.oe-reset-btn:hover{
    background:#d1d5db;
}