.blog-search {
    background: #0f1213;
    border-radius: 12px;
    padding: 18px;
}

.blog-search__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.blog-search__field {
    position: relative;
}

.blog-search__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #333b3f;
    border-radius: 10px;
    padding: 14px 14px;
}

#blog-header-search-input {
    width: 234px;
    outline: none;
    line-height: 1.3;
    font-size: 14px;
    background: transparent;
    border: 0;
    outline: 0;
    color: #FFF;
}

#blog-header-search-input::-webkit-input-placeholder {
    color: #FFF;
}

.search-icon {
    margin-right: 10px;
    flex-shrink: 0;
}

/* Results container */
.blog-search__results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 300px;
    background: #333b3f;
    border-radius: 8px;
    border: 0;
    outline: 0;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.blog-search__result-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

.blog-search__result-row:last-child {
    border-bottom: none;
}

.blog-search__result-row:hover {
    background: #505a60;
}

.blog-search__result-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px!important;
    margin-right: 12px;
}

.blog-search__result-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Anchors */
.blog-search__anchors {
    display: flex;
    gap: 20px;
}

.blog-search__anchor-item {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #bcc1cd;
    transition: color 0.3s;
    padding-right: 20px;
    position: relative;
}

.blog-search__anchor-item:not(:last-child)::after {
    content: '';
    display: flex;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: linear-gradient(149deg, #8feafb 20%, #b4f8db 40%, #b4f8db 60%, #8feafb 80%);
}

.blog-search__anchor-item:hover {
    color: #B4F8DB;
}

.blog-search__no-results {
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 1024.98px) {
    .blog-search__wrapper {
       flex-direction: column;
    }

    .blog-search__anchors {
        flex-wrap: wrap;
    }
}