.blog-compact-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 12px 14px 12px 16px;
    border: 1px solid #303238;
    border-radius: 15px;
    background: linear-gradient(120deg, #1d1517 0%, #151619 42%, #121315 100%);
}

.blog-compact-heading {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.blog-compact-heading > span {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border: 1px solid #6a2b31;
    border-radius: 10px;
    background: #30191c;
    color: #ff6d73;
}

.blog-compact-heading > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.blog-compact-heading strong {
    color: #f3f3f4;
    font-size: .91rem;
    line-height: 1.3;
}

.blog-compact-heading small {
    max-width: 570px;
    margin-top: 2px;
    overflow: hidden;
    color: #858790;
    font-size: .68rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-compact-search {
    display: flex;
    align-items: center;
    width: min(100%, 390px);
    min-height: 43px;
    flex: 0 1 390px;
    gap: 8px;
    padding: 5px;
    border: 1px solid #3a3c42;
    border-radius: 11px;
    background: #0d0e10;
}

.blog-compact-search > i {
    margin-left: 8px;
    color: #777a83;
}

.blog-compact-search input {
    min-width: 0;
    flex: 1;
    padding: 7px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f3f3f4;
    font-size: .76rem;
}

.blog-compact-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 33px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: #df353c;
    color: #fff;
    font-size: .69rem;
    font-weight: 800;
}

.blog-category-nav {
    margin-top: 11px;
}

@media (max-width: 760px) {
    .blog-compact-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
        min-height: 0;
        padding: 13px;
    }

    .blog-compact-heading small {
        white-space: normal;
    }

    .blog-compact-search {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    .blog-compact-heading > span {
        width: 36px;
        height: 36px;
    }

    .blog-compact-search button span {
        display: none;
    }

    .blog-compact-search button {
        width: 34px;
        padding: 0;
    }
}
