/* Filter Article Year  */
.hnt-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.hnt-select {
    position: relative;
    flex: 1;
}

.hnt-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 25px 0 13px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid #cdcdcd;
    background: #fff;
    cursor: pointer;
    outline: none;
    border-radius: 0;
    width: 100%;
}

.hnt-select::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
}

.hnt-clear-btn {
    width: 85px;
    background: #c18f59 !important;
    color: #fff;
    border: 1px solid #a6743e;
    font-size: 13px;
    line-height: 40px;
    cursor: pointer;
    transition: 0.2s ease;
    padding: 0 !important;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Roboto";
}

.hnt-clear-btn:hover {
    background: #caa072 !important;
    color: #fff !important;
}

/* Top Bar Search  */
.hnt-search-container {
    background-color: #383838;
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
}

.hnt-header {
    transform: translateY(-51px);
    transition: transform 0.3s ease-in-out;
}

.hnt-header.off-search-bar-top {
    transform: translateY(0);
}

.hnt-search-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    gap: 0px;
}

.hnt-search-icon,
.hnt-search-close {
    color: #959595;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hnt-search-close {
    cursor: pointer;
    transition: color 0.2s ease;
}

.hnt-search-close:hover {
    color: #ffffff;
}

.hnt-search-input {
    background: transparent;
    border: none !important;
    color: #ffffff;
    font-size: 14px;
    flex-grow: 1;
    outline: none;
    padding: 0 10px !important;
}

.hnt-search-input::placeholder {
    color: #888888;
    opacity: 1;
}
