/*=========================================
RESOURCE PAGE
=========================================*/

.gv-resource-wrapper{
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}

.gv-resource-title{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:35px;
}

/*=========================================
FILTERS
=========================================*/

.gv-resource-filters{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.gv-type-filter{
    display:flex;
    gap:15px;
}

.gv-type-btn{

    padding:14px 32px;

    border:2px solid #e5e5e5;

    background:#fff;

    color:#333;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.gv-type-btn:hover{

    border-color:#b2ca00;

}

.gv-type-btn.active{

    background:#b2ca00;

    color:#fff;

    border-color:#b2ca00;

}

.gv-year-filter{

    margin-left:auto;

}

#gv-resource-year{

    width:220px;

    height:48px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:0 15px;

    background:#fff;

    font-size:15px;

    cursor:pointer;

}

/*=========================================
PDF GRID
=========================================*/

#gv-resource-results{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/*=========================================
PDF CARD
=========================================*/

.gv-pdf-card{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:16px;

    padding:30px 20px;

    min-height:280px;

    text-decoration:none;

    transition:.35s;

}

.gv-pdf-card:hover{

    transform:translateY(-6px);

    border-color:#b2ca00;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gv-card-icon{

    font-size:90px;

    margin-bottom:20px;

}

.gv-card-content{

    width:100%;

}

.gv-card-content h3{

    font-size:18px;

    font-weight:600;

    color:#222;

    line-height:1.5;

    margin:0 0 20px;

    min-height:60px;

}

.gv-card-meta{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.gv-card-meta span{

    background:#f4f4f4;

    color:#555;

    padding:7px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.gv-card-btn{

    display:inline-block;

    background:#b2ca00;

    color:#fff;

    padding:12px 24px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.gv-pdf-card:hover .gv-card-btn{

    background:#222;

}

/*=========================================
EMPTY
=========================================*/

.gv-empty{

    grid-column:1/-1;

    text-align:center;

    padding:80px 20px;

    border:1px dashed #ddd;

    border-radius:12px;

    color:#777;

    font-size:18px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:1200px){

    #gv-resource-results{

        grid-template-columns:repeat(3,1fr);

    }

}

@media (max-width:992px){

    .gv-resource-filters{

        flex-direction:column;

        align-items:flex-start;

    }

    .gv-year-filter{

        margin-left:0;

        width:100%;

    }

    #gv-resource-year{

        width:100%;

    }

    #gv-resource-results{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:767px){

    .gv-type-filter{

        width:100%;

        display:flex;

    }

    .gv-type-btn{

        flex:1;

    }

    #gv-resource-results{

        grid-template-columns:1fr;

    }

    .gv-resource-title{

        font-size:32px;

    }

}