/* ============================================================
   Blog Explorer — Article explorer with sidebar, search, dual view
   ============================================================ */

/* ---------- Layout ---------- */
.blog-explorer__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-explorer__header h1 {
    margin-bottom: 0;
}

.blog-explorer__toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.blog-explorer__search {
    flex: 2;
    min-width: 150px;
    max-width: 500px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--fs-base);
}

.blog-explorer__search::placeholder {
    color: var(--color-text-secondary);
}

/* ---------- Autocomplete ---------- */
.be-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 500px;
    z-index: var(--z-sticky);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 4px 12px var(--color-shadow);
    max-height: 300px;
    overflow-y: auto;
}

.be-autocomplete__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--color-border);
}
.be-autocomplete__item:last-child { border-bottom: none; }

.be-autocomplete__item:hover {
    background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.be-autocomplete__title {
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.be-autocomplete__meta {
    font-size: var(--fs-xs);
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.blog-explorer__toolbar-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-explorer__view-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.blog-explorer__view-btn:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.blog-explorer__view-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.blog-explorer__view-btn svg {
    width: 16px;
    height: 16px;
    fill: currentcolor;
}

.blog-explorer__layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.blog-explorer__content {
    flex: 1;
    min-width: 0;
}

/* ---------- Sort dropdown ---------- */
.be-sort-select {
    padding: 0.4rem 0.5rem;
    font-size: var(--fs-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    width: auto;
    max-width: 130px;
}

/* ---------- Sidebar ---------- */
.blog-explorer__sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

/* Sidebar collapse toggle */
.be-sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.be-sidebar__toggle:hover {
    color: var(--color-text);
    background: var(--color-bg-alt);
}

.be-sidebar__toggle svg {
    width: 14px;
    height: 14px;
    fill: currentcolor;
    transition: transform 0.3s ease;
}

/* Collapsed sidebar */
.blog-explorer__sidebar.collapsed {
    width: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Sidebar toggle outside (visible when collapsed) */
.be-sidebar-expand {
    display: none;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: flex-start;
    flex-shrink: 0;
}

.be-sidebar-expand.visible {
    display: flex;
}

.be-sidebar-expand .be-sidebar__toggle {
    width: 32px;
    height: 32px;
}

.be-sidebar__section {
    margin-bottom: 1.25rem;
}

.be-sidebar__section:last-child {
    margin-bottom: 0;
}

.be-sidebar__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.be-sidebar__section-header h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* ---------- Filter buttons ---------- */
.be-sidebar__filters {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.be-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.45rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--fs-sm);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}

.be-filter-btn:hover {
    background: var(--color-bg-alt);
}

.be-filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.be-filter-btn__count {
    font-size: var(--fs-xs);
    opacity: 0.7;
}

/* ---------- Authors list ---------- */
.be-sidebar__authors {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.be-author-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--fs-sm);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}

.be-author-btn:hover {
    background: var(--color-bg-alt);
}

.be-author-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.be-author-btn__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 600;
    flex-shrink: 0;
}

.be-author-more {
    display: block;
    width: 100%;
    padding: 0.4rem 0.5rem;
    margin-top: 0.25rem;
    font-size: var(--fs-xs);
    color: var(--color-primary);
    background: none;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
}

.be-author-more:hover {
    background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

/* ---------- Author picker modal ---------- */
.be-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-toast);
    background: rgb(0 0 0 / 45%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.be-modal {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 420px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgb(0 0 0 / 25%);
}

.be-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem 0.5rem;
}

.be-modal__header h3 {
    margin: 0;
    font-size: var(--fs-md);
}

.be-modal__close {
    background: none;
    border: none;
    font-size: var(--fs-xl);
    cursor: pointer;
    color: var(--color-text-secondary);
    line-height: 1;
}

.be-modal__search {
    margin: 0.5rem 1.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: var(--fs-base);
    width: calc(100% - 2.5rem);
}

.be-modal__list {
    padding: 0.5rem 1.25rem 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ---------- Advanced filters toolbar button ---------- */
.blog-explorer__advanced-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    font-size: var(--fs-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
}

.blog-explorer__advanced-btn:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.blog-explorer__advanced-btn svg {
    flex-shrink: 0;
}

.blog-explorer__reset-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgb(255 59 48 / 40%);
    border-radius: var(--radius);
    background: rgb(255 59 48 / 8%);
    color: var(--color-danger);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s;
}

.blog-explorer__reset-btn:hover {
    background: rgb(255 59 48 / 18%);
    border-color: var(--color-danger);
}

/* ---------- Archives & Authors sidebar ---------- */
.be-sidebar__archives,
.be-sidebar__authors {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Sidebar summary chips */
.be-sidebar-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.be-sidebar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: var(--fs-xs);
}

.be-sidebar-chip__remove {
    width: 14px;
    height: 14px;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: var(--fs-xs);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.be-sidebar-chip__remove:hover {
    opacity: 1;
    background: none;
}

/* ---------- Transfer panel (blog modals) ---------- */
.be-modal--wide {
    max-width: 560px;
}

.be-modal--advanced {
    max-width: 680px;
    max-height: 85vh;
}

.be-transfer {
    display: flex;
    gap: 0;
    margin: 0 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.be-transfer__panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.be-transfer__panel h4 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);
    padding: 0.5rem 0.6rem 0.25rem;
    margin: 0;
}

.be-transfer__list {
    flex: 1;
    overflow-y: auto;
    max-height: 280px;
    min-height: 120px;
}

.be-transfer__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
}

.be-transfer__item:last-child { border-bottom: none; }

.be-transfer__item:hover {
    background: var(--color-bg-alt);
}

.be-transfer__item.selected {
    background: color-mix(in srgb, var(--color-primary) 12%, transparent);
}

.be-transfer__item.focused {
    background: color-mix(in srgb, var(--color-primary) 20%, transparent);
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.be-transfer__item--removable {
    cursor: default;
}

.be-transfer__item-remove {
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    font-size: var(--fs-base);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background 0.1s, color 0.1s;
}

.be-transfer__item-remove:hover {
    background: rgb(255 59 48 / 15%);
    color: var(--color-danger);
}

.be-transfer__placeholder {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    padding: 0.75rem 0.6rem;
    font-style: italic;
}

/* 3-column archive modal */
.be-transfer--3col {
    /* Wider columns */
}

.be-transfer--3col .be-transfer__panel:first-child {
    flex: 0 0 130px;
}

.be-transfer--3col .be-transfer__panel:nth-child(3) {
    flex: 1;
}

.be-transfer--3col .be-transfer__panel:last-child {
    flex: 1;
}

.be-transfer__item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.be-transfer__item-count {
    font-size: var(--fs-xs);
    color: var(--color-text-secondary);
}

.be-transfer__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.be-transfer__btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.be-transfer__btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Modal actions */
.be-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 1rem;
}

/* ---------- Advanced filters modal ---------- */
.be-advanced__body {
    padding: 0 1.25rem;
    overflow-y: auto;
    max-height: calc(85vh - 120px);
}

.be-advanced__section {
    margin-bottom: 1rem;
}

.be-advanced__section:last-child {
    margin-bottom: 0.5rem;
}

.be-advanced__section-title {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);
    margin: 0 0 0.4rem;
}

.be-advanced__search {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    margin-bottom: 0.4rem;
    background: var(--color-surface);
    color: var(--color-text);
}

.be-advanced__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.be-advanced__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.be-advanced__pill:hover {
    background: var(--color-bg-alt);
    border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border));
}

.be-advanced__pill.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.be-advanced__pill-count {
    font-size: var(--fs-xs);
    opacity: 0.7;
}

.be-advanced__dates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.be-advanced__year-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.be-advanced__pill--year {
    font-weight: 600;
}

.be-advanced__months {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    padding-left: 0.5rem;
}

.be-advanced__pill--month {
    font-size: var(--fs-xs);
    padding: 0.2rem 0.5rem;
}

/* Drawer advanced button */
.be-drawer__advanced-btn {
    margin-top: 0.75rem;
    width: 100%;
}

/* ---------- Active filters chips ---------- */
[id="be-active-filters"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

[id="be-active-filters"]:empty {
    display: none;
}

.be-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: var(--fs-xs);
}

.be-active-filter__remove {
    width: 14px;
    height: 14px;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: var(--fs-xs);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.be-active-filter__remove:hover {
    opacity: 1;
    background: none;
}

/* ---------- Table view ---------- */
[id="be-table"] {
    overflow-x: auto;
}

.be-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-base);
}

.be-table th {
    text-align: left;
    padding: 0.5rem;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
}

.be-table td {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.be-table tbody tr {
    transition: background 0.1s;
}

.be-table tbody tr:hover {
    background: var(--color-bg-alt);
}

.be-table__thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

.be-table__thumb--empty {
    width: 60px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
}

.be-table__thumb--empty svg {
    width: 20px;
    height: 20px;
}

.be-table__title a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.be-table__title a:hover {
    color: var(--color-primary);
}

.be-table__author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.be-table__date {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
    white-space: nowrap;
}

.be-table__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.be-table__category-badge {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
    font-size: var(--fs-xs);
}

/* ---------- Loading / Empty / Pagination ---------- */
[id="be-loading"] {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
}

[id="be-loading"].visible {
    display: block;
}

.be-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: be-spin 0.8s linear infinite;
}

@keyframes be-spin {
    to { transform: rotate(360deg); }
}

[id="be-empty"] {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-secondary);
}

[id="be-empty"].visible {
    display: block;
}

[id="be-empty"] p {
    margin-bottom: 0.5rem;
}

[id="be-pagination"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

[id="be-pagination"]:empty {
    display: none;
}

[id="be-pagination"] .btn {
    padding: 0.35rem 0.75rem;
    font-size: var(--fs-sm);
}

/* ---------- FAB (mobile drawer trigger) ---------- */
.be-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    z-index: var(--z-dropdown);
    font-size: var(--fs-xl);
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}

.be-fab:hover {
    transform: scale(1.1);
    background: var(--color-primary);
}

/* ---------- Drawer (mobile sidebar) ---------- */
.be-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 40%);
    z-index: var(--z-drawer-backdrop);
}

.be-drawer-backdrop.visible {
    display: block;
}

.be-drawer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 70vh;
    background: var(--color-surface);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: calc(var(--z-drawer) + 1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0 1rem 1rem;
}

.be-drawer.visible {
    display: block;
}

.be-drawer.open {
    transform: translateY(0);
}

.be-drawer__handle {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0 0.5rem;
    cursor: grab;
    position: sticky;
    top: 0;
    background: var(--color-surface);
    z-index: 1;
}

.be-drawer__handle::after {
    content: '';
    width: 40px;
    height: 4px;
    border-radius: var(--radius-sm);
    background: var(--color-border);
}

/* ---------- Responsive: Tablet ---------- */
@media (width >= 769px) and (width <= 1024px) {
    .blog-explorer__sidebar {
        width: 220px;
    }
}

/* ---------- Responsive: Mobile ---------- */
@media (width <= 768px) {
    .blog-explorer__header {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-explorer__toolbar {
        flex-wrap: wrap;
    }

    .blog-explorer__search {
        max-width: none;
    }

    .blog-explorer__layout {
        flex-direction: column;
    }

    .blog-explorer__sidebar {
        display: none;
    }

    .be-sidebar-expand {
        display: none !important;
    }

    .be-fab {
        display: flex;
    }

    .be-drawer {
        display: block;
    }

    /* Table view responsive: hide less important columns */
    .be-table th:nth-child(n+4),
    .be-table td:nth-child(n+4) {
        display: none;
    }

    /* Transfer panel stacked on mobile */
    .be-transfer {
        flex-direction: column;
    }

    .be-transfer__controls {
        flex-direction: row;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
    }

    .be-transfer__btn svg {
        transform: rotate(90deg);
    }

    .be-transfer__list {
        max-height: 180px;
    }

    /* Advanced filters button: icon only on mobile */
    .blog-explorer__advanced-btn span {
        display: none;
    }

    /* Advanced modal full width */
    .be-modal--advanced {
        max-width: 95%;
    }
}
