.searchform .search-field {
    height: 95px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-left: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 50px;
    color: #fff;
    transition: opacity 0.3s ease-in-out;
    box-shadow: none;
    padding: 0;
}

.search_wrap .search_box {
    background: rgba(0, 46, 91, 0.97);
    height: 100%;
    padding: 50px;
    display: block;
    position: relative;
    overflow: auto;
}

.search_wrap .search_box .search_content {
    max-width: unset;
    width: 100%;
}

.search-results {
    z-index: 9;
}

.results-container {
    padding: 8px 0;
    background: #fff;
    border-radius: 12px 12px 0 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #374151;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.result-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
    background-color: #f3f4f6;
}

.result-content {
    flex: 1;
    min-width: 0;
    text-align: start;
}

.searchform .search-field:focus {
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
    caret-color: #fff;
    color: #fff;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #134777;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search_wrap .search_box .search_content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: unset;
    color: #012e59;
}

.result-excerpt {
    font-size: 14px;
    color: #858585;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
    border-radius: 0 0 12px 12px;
}

.pagination-info {
    font-size: 14px;
    color: #6b7280;
}

.pagination-info {
    font-size: 14px;
    color: #6b7280;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 4px;
}

.page-number {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    min-width: 32px;
    text-align: center;
    transition: all 0.2s ease;
}

.pagination-controls .page-number {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #fff;
    font-size: 13px;
    font-weight: bold;
}

.page-number.active {
    background-color: #012e59;
    border-color: #0e76bc;
    color: white;
}

@media (max-width: 580px) {
    .searchform .search-field {
        font-size: 20px;
    }

    .search_wrap .search_box {
        padding: 20px;
    }

    .pagination-container {
        display: block;
    }

    .pagination-controls {
        display: flex;
        margin-top: 20px;
    }
}