/* =========================================================
   RKMSM SITE SEARCH
========================================================= */
.rk-search-page {
    background: #f5f7fb;
    min-height: 60vh;
    padding-bottom: 80px;
    font-family: 'Poppins', sans-serif;
}

.rk-search-hero {
    background: linear-gradient(135deg, #071d41 0%, #0d3569 100%);
    color: #fff;
    padding: 58px 0 62px;
}

.rk-search-hero .site-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.rk-search-kicker {
    display: inline-block;
    color: #e5a52b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 8px;
}

.rk-search-hero h1 {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.rk-search-hero p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.rk-search-container {
    max-width: 1180px;
    margin: -28px auto 0;
    padding: 0 20px;
    position: relative;
}

.rk-search-form {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(7,29,65,.14);
}

.rk-search-input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.rk-search-icon {
    position: absolute;
    left: 18px;
    font-size: 22px;
    color: #0d3569;
}

.rk-search-input-wrap input {
    width: 100%;
    height: 58px;
    border: 1px solid #dbe2ec;
    border-radius: 9px;
    padding: 0 48px;
    font-family: inherit;
    font-size: 15px;
    color: #17243a;
    outline: none;
}

.rk-search-input-wrap input:focus {
    border-color: #0d3569;
    box-shadow: 0 0 0 3px rgba(13,53,105,.09);
}

.rk-search-clear {
    position: absolute;
    right: 16px;
    color: #718096;
    font-size: 25px;
    text-decoration: none;
}

.rk-search-form > button {
    min-width: 145px;
    border: 0;
    border-radius: 9px;
    background: #e5a52b;
    color: #071d41;
    font: 700 13px/1 'Poppins', sans-serif;
    letter-spacing: .06em;
    cursor: pointer;
}

.rk-search-summary {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin: 50px 0 24px;
}

.rk-search-summary span {
    color: #e5a52b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.rk-search-summary h2 {
    margin: 5px 0 0;
    color: #071d41;
    font-size: 27px;
}

.rk-search-summary strong {
    color: #607086;
    font-size: 14px;
}

.rk-search-section {
    margin-top: 30px;
}

.rk-search-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfe5ed;
}

.rk-search-section-heading h3 {
    margin: 0;
    color: #071d41;
    font-size: 18px;
}

.rk-search-section-heading span {
    color: #718096;
    font-size: 13px;
}

.rk-search-results {
    display: grid;
    gap: 12px;
}

.rk-search-result {
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 11px;
    padding: 20px 22px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rk-search-result:hover {
    transform: translateY(-2px);
    border-color: #cbd6e5;
    box-shadow: 0 9px 24px rgba(7,29,65,.08);
}

.rk-search-result-type {
    color: #e5a52b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.rk-search-result h4 {
    margin: 6px 0 7px;
    font-size: 17px;
}

.rk-search-result h4 a {
    color: #0d3569;
    text-decoration: none;
}

.rk-search-result h4 a:hover {
    color: #b57909;
}

.rk-search-result p {
    color: #637187;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 10px;
}

.rk-search-read {
    color: #0d3569;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.rk-search-read span {
    color: #e5a52b;
    padding-left: 4px;
}

.rk-search-pagination {
    margin-top: 15px;
}

.rk-search-empty,
.rk-search-no-results {
    text-align: center;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 14px;
    padding: 70px 20px;
    margin-top: 45px;
}

.rk-search-empty-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3fa;
    color: #0d3569;
    font-size: 28px;
    margin-bottom: 15px;
}

.rk-search-empty h2,
.rk-search-no-results h2 {
    margin: 0 0 7px;
    color: #071d41;
    font-size: 23px;
}

.rk-search-empty p,
.rk-search-no-results p {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

@media (max-width: 700px) {
    .rk-search-hero {
        padding: 42px 0 50px;
    }

    .rk-search-hero h1 {
        font-size: 32px;
    }

    .rk-search-form {
        flex-direction: column;
    }

    .rk-search-form > button {
        min-height: 52px;
    }

    .rk-search-summary {
        align-items: start;
        flex-direction: column;
        margin-top: 38px;
    }

    .rk-search-summary h2 {
        font-size: 22px;
    }
}
