/* Feed Header (Popular/Recent/Board Title) */
.feed-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
}

.feed-header-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-primary);
}

/* Specific icon colors */
.feed-header-icon .fa-fire {
    color: #ff3b30;
    /* Red for popular */
}

.feed-header-icon .fa-clock {
    color: #007aff;
    /* Blue for recent */
}

.feed-header-icon .fa-layer-group {
    color: #34c759;
    /* Green for boards */
}

.feed-header-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
}