/* ==========================================
   MFJ Premium Search
========================================== */

.mfj-search-section{
    background:#f8fbff;
    padding:60px 20px;
    border-bottom:1px solid #e5e7eb;
}

.mfj-search-wrapper{
    max-width:700px;
    margin:0 auto;
}

.mfj-search-title{
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
    text-align:center;
}

.mfj-search-subtitle{
    text-align:center;
    color:#666;
    font-size:16px;
    margin-top:-10px;
    margin-bottom:25px;
    line-height:1.6;
}

.mfj-search-input{
    width:100%;
    height:64px;
    padding:0 24px;
    font-size:20px;
    border:1px solid #d1d5db;
    border-radius:999px;
    transition:.25s;
    background:#fff;
    box-sizing:border-box;
}

.mfj-search-input:focus{
    outline:none;
    border-color:#0f766e;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

#mfj-search-results{
    margin-top:20px;
}

/* ==========================================
   Search Result Cards
========================================== */

.mfj-result{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:18px;
    margin-bottom:14px;
    transition:.25s;
}

.mfj-result:hover{
    border-color:#0f766e;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.mfj-result-title{
    display:block;
    font-size:20px;
    font-weight:700;
    color:#111827;
    text-decoration:none;
    margin-bottom:10px;
}

.mfj-result-title:hover{
    color:#0f766e;
}

.mfj-result-summary{
    color:#555;
    line-height:1.6;
    margin-bottom:12px;
}

.mfj-result-url{
    color:#0f766e;
    font-size:14px;
    word-break:break-word;
}

.mfj-no-results{
    text-align:center;
    padding:20px;
    color:#666;
}