/*
==========================================
No Results / Content None
==========================================
*/

.no-results{
    margin:60px 0;
    padding:60px 40px;
    text-align:center;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
}

/*
==========================================
Title
==========================================
*/

.no-results .page-title{
    margin:0 0 20px;
    font-size:36px;
    font-weight:700;
    color:#222;
    line-height:1.3;
}

/*
==========================================
Content
==========================================
*/

.no-results .page-content{
    max-width:640px;
    margin:0 auto;
}

.no-results p{
    margin-bottom:30px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/*
==========================================
Search Form
==========================================
*/

.no-results .search-form{
    display:flex;
    gap:12px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.no-results .search-field{
    flex:1;
    min-width:260px;
    padding:14px 18px;
    font-size:16px;
    border:1px solid #d1d5db;
    border-radius:8px;
    transition:.3s ease;
}

.no-results .search-field:focus{
    outline:none;
    border-color:#d50000;
    box-shadow:0 0 0 3px rgba(213,0,0,.10);
}

.no-results .search-submit{
    padding:14px 28px;
    border:none;
    border-radius:8px;
    background:#d50000;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.no-results .search-submit:hover{
    background:#b00000;
    transform:translateY(-2px);
}

/*
==========================================
Links
==========================================
*/

.no-results a{
    color:#d50000;
    text-decoration:none;
    transition:.3s ease;
}

.no-results a:hover{
    color:#a00000;
}

/*
==========================================
Accessibility
==========================================
*/

.no-results a:focus-visible,
.no-results .search-field:focus-visible,
.no-results .search-submit:focus-visible{
    outline:2px solid #d50000;
    outline-offset:3px;
}

/*
==========================================
Responsive
==========================================
*/

@media (max-width:768px){

    .no-results{
        padding:40px 25px;
    }

    .no-results .page-title{
        font-size:30px;
    }

}

@media (max-width:576px){

    .no-results{
        padding:30px 20px;
    }

    .no-results .page-title{
        font-size:24px;
    }

    .no-results .search-form{
        flex-direction:column;
    }

    .no-results .search-field,
    .no-results .search-submit{
        width:100%;
    }

}