@media (max-width: 900px) {
    .sidebar-content {
        display: none !important;
    }
}

.category-breadcrumb {
    font-size: 12px;
    color: #65676b;
    margin-bottom: 4px;
}

.category-breadcrumb a {
    color: var(--primary, #ff4500);
    text-decoration: none;
}

.category-meta-badge {
    font-size: 12px;
    background: #f0f2f5;
    color: #65676b;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.page-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1e21;
    margin: 0;
}

.feed-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inline-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border:none;
    background: var(--bg);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-text);
    cursor: pointer;
}
.dropdown-trigger:hover { background: #e2e5e9; }

.dropdown-chevron {
    width: 16px;
    height: 16px;
    fill: #65676b;
}

.feed-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
    flex-wrap: nowrap; /* Forces elements to stay on the same line */
}

.feed-header-main {
    min-width: 0; /* Allows text truncation if category name is excessively long on tiny screens */
    flex: 1;
}

.page-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1e21;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .main-content, .feed-container { width: 100% !important; box-sizing: border-box; }
    .feed-header-bar { align-items: flex-end; }
    .inline-filters .dropdown-wrapper { position: relative; }
    .inline-filters .dropdown-menu { right: 0; left: auto; }
}